Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
58bd39cd
Unverified
Commit
58bd39cd
authored
Sep 17, 2019
by
Alexandre Ardhuin
Committed by
GitHub
Sep 17, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Extract some onPress methods (#40678)
* Extract some onPress methods * address review comments
parent
c17086a0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
87 additions
and
95 deletions
+87
-95
cupertino_alert_demo.dart
...tter_gallery/lib/demo/cupertino/cupertino_alert_demo.dart
+87
-95
No files found.
examples/flutter_gallery/lib/demo/cupertino/cupertino_alert_demo.dart
View file @
58bd39cd
...
...
@@ -64,7 +64,54 @@ class _CupertinoAlertDemoState extends State<CupertinoAlertDemo> {
children:
<
Widget
>[
CupertinoButton
.
filled
(
child:
const
Text
(
'Alert'
),
onPressed:
()
=>
_onAlertPress
(
context
),
),
const
Padding
(
padding:
EdgeInsets
.
all
(
8.0
)),
CupertinoButton
.
filled
(
child:
const
Text
(
'Alert with Title'
),
padding:
const
EdgeInsets
.
symmetric
(
vertical:
16.0
,
horizontal:
36.0
),
onPressed:
()
=>
_onAlertWithTitlePress
(
context
),
),
const
Padding
(
padding:
EdgeInsets
.
all
(
8.0
)),
CupertinoButton
.
filled
(
child:
const
Text
(
'Alert with Buttons'
),
padding:
const
EdgeInsets
.
symmetric
(
vertical:
16.0
,
horizontal:
36.0
),
onPressed:
()
=>
_onAlertWithButtonsPress
(
context
),
),
const
Padding
(
padding:
EdgeInsets
.
all
(
8.0
)),
CupertinoButton
.
filled
(
child:
const
Text
(
'Alert Buttons Only'
),
padding:
const
EdgeInsets
.
symmetric
(
vertical:
16.0
,
horizontal:
36.0
),
onPressed:
()
{
showDemoDialog
(
context:
context
,
child:
const
CupertinoDessertDialog
(),
);
},
),
const
Padding
(
padding:
EdgeInsets
.
all
(
8.0
)),
CupertinoButton
.
filled
(
child:
const
Text
(
'Action Sheet'
),
padding:
const
EdgeInsets
.
symmetric
(
vertical:
16.0
,
horizontal:
36.0
),
onPressed:
()
=>
_onActionSheetPress
(
context
),
),
],
),
),
if
(
lastSelectedValue
!=
null
)
Positioned
(
bottom:
32.0
,
child:
Text
(
'You selected:
$lastSelectedValue
'
),
),
],
);
},
),
),
);
}
void
_onAlertPress
(
BuildContext
context
)
{
showDemoDialog
(
context:
context
,
child:
CupertinoAlertDialog
(
...
...
@@ -73,27 +120,19 @@ class _CupertinoAlertDemoState extends State<CupertinoAlertDemo> {
CupertinoDialogAction
(
child:
const
Text
(
'Discard'
),
isDestructiveAction:
true
,
onPressed:
()
{
Navigator
.
pop
(
context
,
'Discard'
);
},
onPressed:
()
=>
Navigator
.
pop
(
context
,
'Discard'
),
),
CupertinoDialogAction
(
child:
const
Text
(
'Cancel'
),
isDefaultAction:
true
,
onPressed:
()
{
Navigator
.
pop
(
context
,
'Cancel'
);
},
onPressed:
()
=>
Navigator
.
pop
(
context
,
'Cancel'
),
),
],
),
);
},
),
const
Padding
(
padding:
EdgeInsets
.
all
(
8.0
)),
CupertinoButton
.
filled
(
child:
const
Text
(
'Alert with Title'
),
padding:
const
EdgeInsets
.
symmetric
(
vertical:
16.0
,
horizontal:
36.0
),
onPressed:
()
{
}
void
_onAlertWithTitlePress
(
BuildContext
context
)
{
showDemoDialog
(
context:
context
,
child:
CupertinoAlertDialog
(
...
...
@@ -103,26 +142,18 @@ class _CupertinoAlertDemoState extends State<CupertinoAlertDemo> {
actions:
<
Widget
>[
CupertinoDialogAction
(
child:
const
Text
(
'Don
\'
t Allow'
),
onPressed:
()
{
Navigator
.
pop
(
context
,
'Disallow'
);
},
onPressed:
()
=>
Navigator
.
pop
(
context
,
'Disallow'
),
),
CupertinoDialogAction
(
child:
const
Text
(
'Allow'
),
onPressed:
()
{
Navigator
.
pop
(
context
,
'Allow'
);
},
onPressed:
()
=>
Navigator
.
pop
(
context
,
'Allow'
),
),
],
),
);
},
),
const
Padding
(
padding:
EdgeInsets
.
all
(
8.0
)),
CupertinoButton
.
filled
(
child:
const
Text
(
'Alert with Buttons'
),
padding:
const
EdgeInsets
.
symmetric
(
vertical:
16.0
,
horizontal:
36.0
),
onPressed:
()
{
}
void
_onAlertWithButtonsPress
(
BuildContext
context
)
{
showDemoDialog
(
context:
context
,
child:
const
CupertinoDessertDialog
(
...
...
@@ -132,24 +163,9 @@ class _CupertinoAlertDemoState extends State<CupertinoAlertDemo> {
'list of eateries in your area.'
),
),
);
},
),
const
Padding
(
padding:
EdgeInsets
.
all
(
8.0
)),
CupertinoButton
.
filled
(
child:
const
Text
(
'Alert Buttons Only'
),
padding:
const
EdgeInsets
.
symmetric
(
vertical:
16.0
,
horizontal:
36.0
),
onPressed:
()
{
showDemoDialog
(
context:
context
,
child:
const
CupertinoDessertDialog
(),
);
},
),
const
Padding
(
padding:
EdgeInsets
.
all
(
8.0
)),
CupertinoButton
.
filled
(
child:
const
Text
(
'Action Sheet'
),
padding:
const
EdgeInsets
.
symmetric
(
vertical:
16.0
,
horizontal:
36.0
),
onPressed:
()
{
}
void
_onActionSheetPress
(
BuildContext
context
)
{
showDemoActionSheet
(
context:
context
,
child:
CupertinoActionSheet
(
...
...
@@ -158,45 +174,21 @@ class _CupertinoAlertDemoState extends State<CupertinoAlertDemo> {
actions:
<
Widget
>[
CupertinoActionSheetAction
(
child:
const
Text
(
'Profiteroles'
),
onPressed:
()
{
Navigator
.
pop
(
context
,
'Profiteroles'
);
},
onPressed:
()
=>
Navigator
.
pop
(
context
,
'Profiteroles'
),
),
CupertinoActionSheetAction
(
child:
const
Text
(
'Cannolis'
),
onPressed:
()
{
Navigator
.
pop
(
context
,
'Cannolis'
);
},
onPressed:
()
=>
Navigator
.
pop
(
context
,
'Cannolis'
),
),
CupertinoActionSheetAction
(
child:
const
Text
(
'Trifle'
),
onPressed:
()
{
Navigator
.
pop
(
context
,
'Trifle'
);
},
onPressed:
()
=>
Navigator
.
pop
(
context
,
'Trifle'
),
),
],
cancelButton:
CupertinoActionSheetAction
(
child:
const
Text
(
'Cancel'
),
isDefaultAction:
true
,
onPressed:
()
{
Navigator
.
pop
(
context
,
'Cancel'
);
},
),
),
);
},
),
],
),
),
if
(
lastSelectedValue
!=
null
)
Positioned
(
bottom:
32.0
,
child:
Text
(
'You selected:
$lastSelectedValue
'
),
),
],
);
},
onPressed:
()
=>
Navigator
.
pop
(
context
,
'Cancel'
),
),
),
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment