Flutter-Course-Resources/i_am_rich/lib/main.dart
2022-04-02 23:42:31 -12:00

18 lines
438 B
Dart

import 'package:flutter/material.dart';
// The main function is the starting point of our Flutter apps.
void main() {
runApp(
MaterialApp(
home: Scaffold(
backgroundColor: Colors.blueGrey[800],
appBar: AppBar(
title: Text('I Am Rich'), backgroundColor: Colors.blueGrey[900]),
body: Center(
child: Image(image: AssetImage('images/diamond.png')),
),
),
),
);
}