Skip to content

Commit

Permalink
- Updated nested flow example
Browse files Browse the repository at this point in the history
  • Loading branch information
ps9310 committed Oct 10, 2024
1 parent b7c9a4c commit 37f9505
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion example/lib/pages/components/nested_flow.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ class NestedFlowDemo extends StatelessWidget {
children: [
ZdsButton(
onTap: () => showFlow(context).then((value) => print(value)),
child: const Text('bottom sheet for Tablet and Mobile'),
child: const Text('Show Nested Flow'),
),
const Text(
'Navigate through the nested flow and see how the back button works. Result will be printed to the console.',
style: TextStyle(fontStyle: FontStyle.italic),
),
].divide(const SizedBox(height: 20)).toList(),
),
Expand Down

0 comments on commit 37f9505

Please sign in to comment.