Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import 'package:flutter/material.dart';
- // The main function is the starting point for all flutter apps
- // main() instructs to run runApp() which is a MaterialApp
- // that contains a Center widget and then a Text widget
- // Note: The above was modified to contain a Scaffold widget
- void main() {
- runApp(
- MaterialApp(
- home: Scaffold(
- backgroundColor: Colors.blueGrey,
- appBar: AppBar(
- title: Text('I am rich'),
- backgroundColor: Colors.blueGrey[900],
- ),
- body: Center(
- child: Image(
- image: AssetImage('images/diamond.png'),
- ),
- ),
- ),
- ),
- );
- }
Advertisement
Add Comment
Please, Sign In to add comment