BG / Restaurant Card

This commit is contained in:
2020-10-10 19:36:37 +02:00
parent 73597066c8
commit f120884d88
2 changed files with 71 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
import 'package:flutter/material.dart';
import 'components.dart';
void main() {
runApp(App());
@@ -43,6 +44,16 @@ class _HomePageState extends State<HomePage> {
"img/logo_mint.png",
width: 160,
),
RestaurantCard(
id: 1,
name: "Pierożek",
city: "Mikołajki",
),
RestaurantCard(
id: 2,
name: "Kuchnie Świata",
city: "Mikołajki",
)
],
),
),