Snippets
Created by
Kevin Armstrong
last modified
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 | import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'state.dart';
class SettingsDialog extends StatelessWidget {
final GlobalKey<NavigatorState> settingsNavKey = GlobalKey<NavigatorState>();
SettingsDialog();
@override
Widget build(BuildContext context) {
return Navigator(
key: settingsNavKey,
initialRoute: 'settings/home',
onGenerateRoute: (routeSettings) {
WidgetBuilder builder;
switch (routeSettings.name) {
case 'settings/home':
builder = (BuildContext _) => SettingsHome(context);
break;
case 'settings/color':
builder = (BuildContext _) => SettingsAccentColor(context);
break;
}
return MaterialPageRoute(
builder: builder,
settings: routeSettings,
);
},
);
}
}
class SettingsHome extends StatelessWidget {
final BuildContext topContext;
SettingsHome(this.topContext);
@override
Widget build(BuildContext context) {
final container = SettingsContainer.of(topContext);
bool isAndroid = Theme.of(context).platform == TargetPlatform.android;
bool isDark = container.settings.isDark;
Color accentColor = container.settings.accentColor;
return new Scaffold(
appBar: new AppBar(
title: Text('Settings'),
elevation: 0.0,
actions: <Widget>[
IconButton(
onPressed: () => Navigator.of(topContext).pop(),
icon: Icon(Icons.close),
),
],
),
body: ListView(
children: <Widget>[
ListTile(
title: Text('Dark Mode'),
trailing: Switch.adaptive(
value: isDark,
onChanged: (bool value) {
container.updateSettings(isDark: value);
},
activeColor: container.settings.accentColor,
),
),
ListTile(
title: Text('Accent Color'),
trailing: SizedBox(
width: 100,
child: Row(
mainAxisAlignment: MainAxisAlignment.end,
children: <Widget>[
Container(
width: 30,
height: 30,
decoration: BoxDecoration(
color: accentColor,
shape: BoxShape.circle,
),
),
Icon(Icons.chevron_right),
],
),
),
onTap: () => Navigator.pushNamed(context, 'settings/color'),
),
ListTile(
title: Text('FAQs'),
trailing: Icon(Icons.info_outline),
onTap: () {
showDialog(
context: topContext,
builder: (BuildContext _) {
String title = 'Open External';
String content =
'Are you sure you want to navigate outside of app?';
return isAndroid
? AlertDialog(
title: Text(title),
content: Text(content),
actions: <Widget>[
FlatButton(
child: Text('No'),
onPressed: () => Navigator.pop(topContext),
),
FlatButton(
child: Text('Yes'),
onPressed: () => Navigator.pop(topContext),
),
],
)
: CupertinoAlertDialog(
title: Text(title),
content: Text(content),
actions: <Widget>[
CupertinoDialogAction(
child: Text('No'),
isDestructiveAction: true,
onPressed: () => Navigator.pop(topContext),
),
CupertinoDialogAction(
child: Text('Yes'),
isDefaultAction: true,
onPressed: () => Navigator.pop(topContext),
),
],
);
});
},
),
],
),
);
}
}
class SettingsAccentColor extends StatelessWidget {
final BuildContext topContext;
SettingsAccentColor(this.topContext);
@override
Widget build(BuildContext context) {
final container = SettingsContainer.of(topContext);
Color accentColor = container.settings.accentColor;
Color iconColor = container.settings.textColor;
return new Scaffold(
appBar: new AppBar(
title: Text('Select Accent Color'),
elevation: 0.0,
),
body: ListView.builder(
itemBuilder: (context, index) {
return Container(
child: ListTile(
trailing: accentColor == Colors.primaries[index]
? Icon(
Icons.radio_button_checked,
color: iconColor,
)
: Container(),
onTap: () {
container.updateSettings(color: Colors.primaries[index]);
Navigator.pop(context, Colors.primaries[index]);
},
),
color: Colors.primaries[index],
margin: EdgeInsets.all(5.0),
);
},
itemCount: Colors.primaries.length,
),
);
}
}
|
Comments (0)
You can clone a snippet to your computer for local editing. Learn more.