GregLeck

I Am Rich App

May 5th, 2019
408
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.66 KB | None | 0 0
  1. import 'package:flutter/material.dart';
  2.  
  3. // The main function is the starting point for all flutter apps
  4. // main() instructs to run runApp() which is a MaterialApp
  5. // that contains a Center widget and then a Text widget
  6. // Note: The above was modified to contain a Scaffold widget
  7. void main() {
  8.   runApp(
  9.     MaterialApp(
  10.       home: Scaffold(
  11.         backgroundColor: Colors.blueGrey,
  12.         appBar: AppBar(
  13.           title: Text('I am rich'),
  14.           backgroundColor: Colors.blueGrey[900],
  15.         ),
  16.         body: Center(
  17.           child: Image(
  18.             image: AssetImage('images/diamond.png'),
  19.           ),
  20.         ),
  21.       ),
  22.     ),
  23.   );
  24. }
Advertisement
Add Comment
Please, Sign In to add comment