1
0
mirror of https://github.com/nisrulz/flutter-examples.git synced 2025-11-09 04:58:58 +00:00

Added bottom sheet example app (#64)

This commit is contained in:
Rishika Jain
2020-10-09 04:41:26 +05:30
committed by GitHub
parent 24955aeac5
commit 1cf8680ef4
65 changed files with 1461 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
import 'package:flutter/material.dart';
import 'package:project/home.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Bottom Sheet',
theme: ThemeData(
primarySwatch: Colors.red,
visualDensity: VisualDensity.adaptivePlatformDensity,
),
home: MyHomePage(title: 'Bottom Sheet'),
);
}
}