-
Notifications
You must be signed in to change notification settings - Fork 22
/
declarative_navigation_sheet.dart
214 lines (199 loc) · 6.26 KB
/
declarative_navigation_sheet.dart
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
import 'package:flutter/material.dart';
import 'package:go_router/go_router.dart';
import 'package:smooth_sheets/smooth_sheets.dart';
// The code may seem verbose, but the core principle is straightforward.
// In this tutorial, you only need to learn the following:
//
// 1. Create a Navigator and wrap it in a NavigationSheet.
// 2. Use *NavigationSheetPage to create a page that belongs to the navigator.
// 3. Do not forget to register a NavigationSheetTransitionObserver to the navigator.
void main() {
runApp(const _DeclarativeNavigationSheetExample());
}
// NavigationSheet requires a special NavigatorObserver in order to
// smoothly change its position during a route transition.
final transitionObserver = NavigationSheetTransitionObserver();
// To use declarative navigation, we utilize the 'go_router' package.
// However, any other package that works with Navigator 2.0
// or even your own implementation can also be used.
final router = GoRouter(
initialLocation: '/a',
routes: [
// We use ShellRoute to create a Navigator
// that will be used for nested navigation in the sheet.
ShellRoute(
// Do not forget this line!
observers: [transitionObserver],
builder: (context, state, child) {
return _ExampleHome(nestedNavigator: child);
},
routes: [
GoRoute(
path: '/a',
pageBuilder: (context, state) {
// Use DraggableNavigationSheetPage for a draggable page.
// If the page contains scrollable widget(s), consider using
// ScrollableNavigationSheetPage instead.
return DraggableNavigationSheetPage(
key: state.pageKey,
child: const _ExampleSheetContent(
title: '/a',
size: 0.5,
destinations: ['/a/details', '/b'],
),
);
},
routes: [
GoRoute(
path: 'details',
pageBuilder: (context, state) {
return DraggableNavigationSheetPage(
key: state.pageKey,
child: const _ExampleSheetContent(
title: '/a/details',
size: 0.75,
destinations: ['/a/details/info'],
),
);
},
routes: [
GoRoute(
path: 'info',
pageBuilder: (context, state) {
return DraggableNavigationSheetPage(
key: state.pageKey,
child: const _ExampleSheetContent(
title: '/a/details/info',
size: 1.0,
destinations: ['/a', '/b', '/b/details'],
),
);
},
),
],
),
],
),
GoRoute(
path: '/b',
pageBuilder: (context, state) {
return DraggableNavigationSheetPage(
key: state.pageKey,
child: const _ExampleSheetContent(
title: 'B',
size: 0.6,
destinations: ['/b/details', '/a'],
),
);
},
routes: [
GoRoute(
path: 'details',
pageBuilder: (context, state) {
return DraggableNavigationSheetPage(
key: state.pageKey,
child: const _ExampleSheetContent(
title: 'B Details',
size: 0.5,
destinations: ['/a'],
),
);
},
),
],
),
],
),
],
);
class _DeclarativeNavigationSheetExample extends StatelessWidget {
const _DeclarativeNavigationSheetExample();
@override
Widget build(BuildContext context) {
return MaterialApp.router(routerConfig: router);
}
}
class _ExampleHome extends StatelessWidget {
const _ExampleHome({
required this.nestedNavigator,
});
final Widget nestedNavigator;
@override
Widget build(BuildContext context) {
return Stack(
children: [
const Scaffold(),
_ExampleSheet(nestedNavigator: nestedNavigator),
],
);
}
}
class _ExampleSheet extends StatelessWidget {
const _ExampleSheet({
required this.nestedNavigator,
});
final Widget nestedNavigator;
@override
Widget build(BuildContext context) {
return NavigationSheet(
transitionObserver: transitionObserver,
child: Material(
color: Theme.of(context).colorScheme.primary,
borderRadius: BorderRadius.circular(16),
clipBehavior: Clip.antiAlias,
child: nestedNavigator,
),
);
}
}
class _ExampleSheetContent extends StatelessWidget {
const _ExampleSheetContent({
required this.title,
required this.size,
required this.destinations,
});
final String title;
final double size;
final List<String> destinations;
@override
Widget build(BuildContext context) {
final textColor = Theme.of(context).colorScheme.onSecondaryContainer;
final textStyle = Theme.of(context).textTheme.displayMedium?.copyWith(
fontWeight: FontWeight.bold,
color: textColor,
);
return LayoutBuilder(
builder: (context, constraints) {
return Container(
color: Theme.of(context).colorScheme.secondaryContainer,
width: constraints.maxWidth,
height: constraints.maxHeight * size,
child: SafeArea(
child: Column(
children: [
Expanded(
child: Center(
child: Text(title, style: textStyle),
),
),
Column(
mainAxisSize: MainAxisSize.min,
children: [
for (final dest in destinations)
TextButton(
style: TextButton.styleFrom(
foregroundColor: textColor,
),
onPressed: () => context.go(dest),
child: Text('Go To $dest'),
),
],
),
],
),
),
);
},
);
}
}