22 lines
463 B
Dart
22 lines
463 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
void main() => runApp(MyApp());
|
|
|
|
class MyApp extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
home: Scaffold(
|
|
appBar: AppBar(
|
|
title: Text('Do Everything Bar'),
|
|
),
|
|
body: Card(
|
|
child: Column(children: <Widget>[
|
|
Image.asset('assets/food.jpg'),
|
|
Text('Food Paradise')
|
|
])),
|
|
),
|
|
);
|
|
}
|
|
}
|