Skip to content

Instantly share code, notes, and snippets.

View maheshj01's full-sized avatar
💭
Bring it on 🔥

Mahesh Jamdade maheshj01

💭
Bring it on 🔥
View GitHub Profile
@maheshj01
maheshj01 / gist:298e119e44f7016770d3d5414a556ed2
Last active December 22, 2018 03:57
opens an Empty BottomSheet on button press
MaterialButton(
child: Text(
"Cupertino date Picker",
style: TextStyle(color: Colors.white),
),
color: Colors.redAccent,
onPressed: () {
showModalBottomSheet(
context: context,
builder: (BuildContext builder) {
@maheshj01
maheshj01 / helloworld.dart
Last active January 23, 2022 17:11
Flutter Basic "Hello World" Code (Medium blog post)
Scaffold(
body: Container(
color: Colors.blueGrey,
child: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text("Hello World")
],
),