Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import 'package:flutter/material.dart';
- void main() {
- runApp(const MyApp());
- }
- class MyApp extends StatelessWidget {
- const MyApp({super.key});
- @override
- Widget build(BuildContext context) {
- return MaterialApp(
- debugShowCheckedModeBanner: false,
- home: Scaffold(
- appBar: AppBar(
- title: Text('Welcome to Paradise',
- style: TextStyle(
- color: Colors.blue.shade400,
- fontFamily: 'Times New Roman',
- fontSize: 15,
- )),
- backgroundColor: Colors.black,
- ),
- body:
- const Center(child: Text("Welcome!",
- style: TextStyle(
- fontFamily: "cursive",
- fontSize: 44,
- color: Colors.grey,
- ),
- ),),
- bottomNavigationBar: BottomNavigationBar(items: const [
- BottomNavigationBarItem(
- label: 'Enter',
- icon: Icon(Icons.add_circle_outline_sharp,
- color: Colors.red, size: 35),
- ),
- BottomNavigationBarItem(
- label: "Return",
- icon: Icon(
- Icons.reply_outlined,
- color: Colors.blue,
- size: 35,
- ),
- ),
- ]),
- /* body: const Text(
- 'Enter without thinking',
- style: TextStyle(
- color: Colors.green, fontFamily: "Times New Roman", fontSize: 23),
- ),
- bottomNavigationBar: BottomNavigationBar(items: const [
- BottomNavigationBarItem(label: 'Not Home', icon: Icon(Icons.home)),
- BottomNavigationBarItem(
- label: 'Not Settings', icon: Icon(Icons.settings)),
- BottomNavigationBarItem(
- label: 'view',
- icon: Icon(Icons.accessible_forward_outlined),
- ),
- ]),*/
- ),
- );
- }
- }
- /* @override
- Widget build(BuildContext context) {
- return MaterialApp(
- debugShowCheckedModeBanner: false,
- home: Scaffold(
- appBar:AppBar(
- backgroundColor: Colors.black,
- title: Text(
- 'Hello',
- style: TextStyle(
- color: Colors.redAccent,
- fontSize: 23,
- fontFamily: 'Times New Roman',
- )
- )
- )
- ,)
- );
- }
- }
- */
- /*class MyApp extends StatelessWidget {
- const MyApp({super.key});
- @override
- Widget build(BuildContext context) {
- return MaterialApp(
- debugShowCheckedModeBanner: false,
- home: Scaffold(
- appBar: AppBar(
- title: Text('Greetingss!'),
- backgroundColor: Colors.red.shade500,
- surfaceTintColor: Colors.green,
- ),
- body: Text('It is my first time'),
- ),
- );
- }
- }
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement