Skip to content

Instantly share code, notes, and snippets.

@stephanedeluca
Created April 27, 2023 19:35
Show Gist options
  • Save stephanedeluca/08a2345fd30f2d2d7431729110ba261a to your computer and use it in GitHub Desktop.
Save stephanedeluca/08a2345fd30f2d2d7431729110ba261a to your computer and use it in GitHub Desktop.
golden-kingdom-9162
import 'package:flutter/material.dart';
const Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData.dark().copyWith(
scaffoldBackgroundColor: darkBlue,
),
debugShowCheckedModeBanner: false,
home: Scaffold(
body: Center(
child: MyWidget(),
),
),
);
}
}
class MyWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return OutlinedButton(
onPressed: () => showModalBottomSheet(
context: context,
builder: (context) => BottomSheet(
onClosing: () {},
builder: (context) => BottomSheetContent()
)),
child: const Text("Open"),
);
}
}
class BottomSheetContent extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar:AppBar(title: const Text("Hello")),
body: Container(
color: Colors.pink,
width: double.infinity,
height: 120,
child: const Text("Hello"),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment