Layout Design Without Appbar
Complete Code For Layout Design Without Appbar In Flutter
main.dart
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
home: Scaffold(
backgroundColor: Colors.black,
body: SafeArea(
child:Center(
child: Column(
children: [
Text('Hello Guys !!!', style: TextStyle(fontSize: 40,color: Colors.white),)
],
),
)
)
)
);
}
}