mirror of
https://github.com/londonappbrewery/Flutter-Course-Resources/
synced 2024-11-15 05:44:55 +00:00
17 lines
374 B
Dart
17 lines
374 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
void main() {
|
||
|
runApp(MaterialApp(
|
||
|
home: Scaffold(
|
||
|
backgroundColor: Colors.blueGrey[800],
|
||
|
appBar: AppBar(
|
||
|
title: Center(child: Text("I Am Poor")),
|
||
|
backgroundColor: Colors.blueGrey[900],
|
||
|
),
|
||
|
body: Center(
|
||
|
child: Image(image: AssetImage('images/coal.jpeg')),
|
||
|
),
|
||
|
),
|
||
|
));
|
||
|
}
|