Flutter-Course-Resources/i_am_poor/lib/main.dart

17 lines
374 B
Dart
Raw Normal View History

2022-04-03 11:39:34 +00:00
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')),
),
),
));
}