sweetsheet 0.3.0 sweetsheet: ^0.3.0 copied to clipboard
Show beautiful bottom sheet as confirmation dialog quickly and easily.
import 'package:flutter/material.dart';
import 'package:sweetsheet/sweetsheet.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: 'SweetSheet',
theme: ThemeData(
brightness: Brightness.dark,
primarySwatch: Colors.blue,
),
home: HomePage(title: 'SweetSheet'),
);
}
}
class HomePage extends StatefulWidget {
final String title;
HomePage({required this.title});
@override
_HomePageState createState() => _HomePageState();
}
class _HomePageState extends State<HomePage> {
final SweetSheet _sweetSheet = SweetSheet();
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Container(
padding: const EdgeInsets.all(16.0),
child: ListView(
children: <Widget>[
LargeButton(
context: context,
text: 'Success sheet',
onClick: () {
_sweetSheet.show(
context: context,
title: Text("Lorem Ipsum"),
description: Text(
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. no you condimentum finibus ut ut lorem. Ut pellentesque mauris ut arcu rutrum, at tincidunt arcu tincidunt"),
color: SweetSheetColor.SUCCESS,
positive: SweetSheetAction(
onPressed: () {
Navigator.of(context).pop();
},
title: 'CANCEL',
),
);
},
),
LargeButton(
context: context,
text: 'Danger sheet with icon',
onClick: () {
_sweetSheet.show(
context: context,
title: Text("Delete this post?"),
description:
Text("This action will permanently delete this post."),
color: SweetSheetColor.DANGER,
icon: Icons.delete,
positive: SweetSheetAction(
onPressed: () {
Navigator.of(context).pop();
},
title: 'DELETE',
),
negative: SweetSheetAction(
onPressed: () {
Navigator.of(context).pop();
},
title: 'CANCEL',
),
);
},
),
LargeButton(
context: context,
text: 'Warning sheet with icon',
onClick: () {
_sweetSheet.show(
context: context,
title: Text("Attention"),
description: Text(
'Your app is not connected to internet actually, please turn on Wifi/Celullar data.'),
color: SweetSheetColor.WARNING,
icon: Icons.portable_wifi_off,
positive: SweetSheetAction(
onPressed: () {
Navigator.of(context).pop();
},
title: 'OPEN SETTING',
icon: Icons.open_in_new,
),
negative: SweetSheetAction(
onPressed: () {
Navigator.of(context).pop();
},
title: 'CANCEL',
),
);
},
),
LargeButton(
context: context,
text: "Nice sheet with icon",
onClick: () {
_sweetSheet.show(
context: context,
title: Text("Connect your watch"),
description: Text(
'To import your health data, you have to connect your smartwatch fist.'),
color: SweetSheetColor.NICE,
icon: Icons.watch,
positive: SweetSheetAction(
onPressed: () {
Navigator.of(context).pop();
},
title: 'CONNECT',
icon: Icons.open_in_new,
),
negative: SweetSheetAction(
onPressed: () {
Navigator.of(context).pop();
},
title: 'CANCEL',
),
);
},
),
LargeButton(
context: context,
text: "Sheet with custom dark color",
onClick: () {
_sweetSheet.show(
context: context,
title: Text("Welcome back"),
description: Text(
'We are happy to see you again. We have some new things for you.'),
color: CustomSheetColor(
main: Colors.black12,
accent: Colors.black87,
icon: Colors.white,
),
icon: Icons.bubble_chart,
positive: SweetSheetAction(
onPressed: () {
Navigator.of(context).pop();
},
title: 'LET\'S GO',
),
);
},
),
LargeButton(
context: context,
text: "Sheet with custom light color",
onClick: () {
_sweetSheet.show(
context: context,
description: Text(
'Place your order. Please confirm the placement of your order : Iphone X 128GB',
style: TextStyle(color: Color(0xff2D3748)),
),
color: CustomSheetColor(
main: Colors.white,
accent: Color(0xff5A67D8),
icon: Color(0xff5A67D8),
),
icon: Icons.local_shipping,
positive: SweetSheetAction(
onPressed: () {
Navigator.of(context).pop();
},
title: 'CONTINUE',
),
negative: SweetSheetAction(
onPressed: () {
Navigator.of(context).pop();
},
title: 'CANCEL',
),
);
},
),
],
),
),
);
}
}
class LargeButton extends StatelessWidget {
final BuildContext context;
final String text;
final VoidCallback onClick;
const LargeButton({
Key? key,
required this.context,
required this.text,
required this.onClick,
}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container(
padding: const EdgeInsets.only(bottom: 8.0),
child: FlatButton(
padding: const EdgeInsets.all(30),
color: Colors.black45,
onPressed: onClick,
child: Container(
width: double.infinity,
child: Text(
text,
textAlign: TextAlign.center,
),
),
),
);
}
}