main.dart dosyası:
import 'screens/screen_1.dart';
import 'package:flutter/material.dart';
void main() => MyApp();
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData.dark(),
debugShowCheckedModeBanner: false,
home: Scaffold(
body: Screen1(),
),
);
}
}
screen_1.dart dosyası:
import 'package:flutter/material.dart';
class Screen1 extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Material(
child: SafeArea(
child: Column(
children: [
Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
Container(
child: Text('Text'),
),
Container(
child: Text('Text'),
),
Container(
child: Text('Text'),
),
],
)
],
)));
}
}
Bunu eski tip yazdığım zaman çalışıyor akat bu şekilde çalışmadı eski tip derken hepsini mainin içine yazılan şeklinden bahsediyoeum yardım ederseniz sevinirim…