Advertisement
anushervon111

Untitled

Jun 7th, 2023
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 2.95 KB | None | 0 0
  1. import 'package:flutter/material.dart';
  2.  
  3. void main() {
  4.   runApp(const MyApp());
  5. }
  6.  
  7. class MyApp extends StatelessWidget {
  8.   const MyApp({super.key});
  9.  
  10.   @override
  11.   Widget build(BuildContext context) {
  12.     return MaterialApp(
  13.       debugShowCheckedModeBanner: false,
  14.       home: Scaffold(
  15.         appBar: AppBar(
  16.           title: Text('Welcome to Paradise',
  17.               style: TextStyle(
  18.                 color: Colors.blue.shade400,
  19.                 fontFamily: 'Times New Roman',
  20.                 fontSize: 15,
  21.               )),
  22.           backgroundColor: Colors.black,
  23.         ),
  24.         body:  
  25.          centerGreetingText(),
  26.      
  27.         bottomNavigationBar: BottomNavigationBar(items: const [
  28.           BottomNavigationBarItem(
  29.             label: 'Enter',
  30.             icon: Icon(Icons.add_circle_outline_sharp,
  31.                 color: Colors.red, size: 35),
  32.           ),
  33.           BottomNavigationBarItem(
  34.             label: "Return",
  35.             icon: Icon(
  36.               Icons.reply_outlined,
  37.               color: Colors.blue,
  38.               size: 35,
  39.             ),
  40.           ),
  41.         ]),
  42.  
  43.         /* body: const Text(
  44.           'Enter without thinking',
  45.           style: TextStyle(
  46.               color: Colors.green, fontFamily: "Times New Roman", fontSize: 23),
  47.         ),
  48.         bottomNavigationBar: BottomNavigationBar(items: const [
  49.           BottomNavigationBarItem(label: 'Not Home', icon: Icon(Icons.home)),
  50.           BottomNavigationBarItem(
  51.               label: 'Not Settings', icon: Icon(Icons.settings)),
  52.          
  53.           BottomNavigationBarItem(
  54.             label: 'view',
  55.             icon: Icon(Icons.accessible_forward_outlined),
  56.           ),
  57.         ]),*/
  58.       ),
  59.     );
  60.   }
  61.  
  62.   Center centerGreetingText() {
  63.     return const Center(child: Text("Welcome!",          
  64.           style: TextStyle(
  65.             fontFamily: "cursive",
  66.             fontSize: 44,
  67.             color: Colors.grey,
  68.           ),
  69.         ),);
  70.   }
  71. }
  72.  
  73.  
  74.  
  75.  
  76.  
  77.  
  78.  
  79.  /* @override
  80.   Widget build(BuildContext context) {
  81.     return MaterialApp(
  82.       debugShowCheckedModeBanner: false,
  83.       home: Scaffold(
  84.           appBar:AppBar(
  85.             backgroundColor: Colors.black,
  86.             title: Text(
  87.               'Hello',
  88.               style: TextStyle(
  89.                 color: Colors.redAccent,
  90.                 fontSize: 23,
  91.                 fontFamily: 'Times New Roman',
  92.               )
  93.             )
  94.            
  95.           )
  96.         ,)
  97.     );
  98.   }
  99. }
  100. */
  101.  
  102.  
  103. /*class MyApp extends StatelessWidget {
  104.   const MyApp({super.key});
  105.  
  106.   @override
  107.   Widget build(BuildContext context) {
  108.     return MaterialApp(
  109.       debugShowCheckedModeBanner: false,
  110.       home: Scaffold(
  111.       appBar: AppBar(
  112.         title: Text('Greetingss!'),
  113.         backgroundColor: Colors.red.shade500,
  114.         surfaceTintColor: Colors.green,
  115.       ),  
  116.       body: Text('It is my first time'),
  117.      
  118.       ),  
  119.     );
  120.   }
  121. }
  122. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement