Advertisement
anushervon111

Untitled

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