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
68425979
Commit
68425979
authored
Jan 10, 2017
by
Adam Barth
Committed by
GitHub
Jan 10, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add CupertinoAlertDialog (#7395)
Fixes #7375
parent
cd34593c
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
397 additions
and
32 deletions
+397
-32
cupertino.dart
packages/flutter/lib/cupertino.dart
+1
-0
dialog.dart
packages/flutter/lib/src/cupertino/dialog.dart
+286
-0
dialog.dart
packages/flutter/lib/src/material/dialog.dart
+11
-10
typography.dart
packages/flutter/lib/src/material/typography.dart
+22
-22
activity_indicator_test.dart
packages/flutter/test/cupertino/activity_indicator_test.dart
+0
-0
dialog_test.dart
packages/flutter/test/cupertino/dialog_test.dart
+77
-0
No files found.
packages/flutter/lib/cupertino.dart
View file @
68425979
...
...
@@ -8,6 +8,7 @@
library
cupertino
;
export
'src/cupertino/activity_indicator.dart'
;
export
'src/cupertino/dialog.dart'
;
export
'src/cupertino/slider.dart'
;
export
'src/cupertino/switch.dart'
;
export
'src/cupertino/thumb_painter.dart'
;
packages/flutter/lib/src/cupertino/dialog.dart
0 → 100644
View file @
68425979
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'package:flutter/widgets.dart'
;
import
'package:meta/meta.dart'
;
// TODO(abarth): These constants probably belong somewhere more general.
const
TextStyle
_kCupertinoDialogTitleStyle
=
const
TextStyle
(
fontFamily:
'.SF UI Display'
,
inherit:
false
,
fontSize:
16.0
,
fontWeight:
FontWeight
.
bold
,
color:
const
Color
(
0xFF000000
),
height:
1.35
,
textBaseline:
TextBaseline
.
alphabetic
,
);
const
TextStyle
_kCupertinoDialogContentStyle
=
const
TextStyle
(
fontFamily:
'.SF UI Text'
,
inherit:
false
,
fontSize:
12.0
,
fontWeight:
FontWeight
.
w400
,
color:
const
Color
(
0xFF000000
),
height:
1.35
,
textBaseline:
TextBaseline
.
alphabetic
,
);
const
TextStyle
_kCupertinoDialogActionStyle
=
const
TextStyle
(
fontFamily:
'.SF UI Text'
,
inherit:
false
,
fontSize:
16.0
,
fontWeight:
FontWeight
.
w400
,
color:
const
Color
(
0xFF027AFF
),
textBaseline:
TextBaseline
.
alphabetic
,
);
const
double
_kCupertinoDialogWidth
=
270.0
;
const
BoxDecoration
_kCupertinoDialogDecoration
=
const
BoxDecoration
(
// TODO(abarth): Rather than being opaque, this decoration should actually be
// partially transparent and have a subtle background blur effect.
backgroundColor:
const
Color
(
0xFFF8F8F8
),
borderRadius:
const
BorderRadius
.
all
(
const
Radius
.
circular
(
15.0
)),
);
/// An iOS-style dialog.
///
/// This dialog widget does not have any opinion about the contents of the
/// dialog. Rather than using this widget directly, consider using
/// [CupertinoAlertDialog], which implement a specific kind of dialog.
///
/// See also:
///
/// * [CupertinoAlertDialog], which is a dialog with title, contents, and
/// actions.
/// * <https://developer.apple.com/ios/human-interface-guidelines/ui-views/alerts/>
class
CupertinoDialog
extends
StatelessWidget
{
/// Creates an iOS-style dialog.
CupertinoDialog
({
Key
key
,
this
.
child
,
})
:
super
(
key:
key
);
/// The widget below this widget in the tree.
final
Widget
child
;
@override
Widget
build
(
BuildContext
context
)
{
return
new
Center
(
child:
new
Container
(
margin:
const
EdgeInsets
.
all
(
10.0
),
width:
_kCupertinoDialogWidth
,
decoration:
_kCupertinoDialogDecoration
,
child:
child
,
),
);
}
}
/// An iOS-style alert dialog.
///
/// An alert dialog informs the user about situations that require
/// acknowledgement. An alert dialog has an optional title and an optional list
/// of actions. The title is displayed above the content and the actions are
/// displayed below the content.
///
/// Typically passed as the child widget to [showDialog], which displays the
/// dialog.
///
/// See also:
///
/// * [CupertinoDialog], which is a generic iOS-style dialog.
/// * <https://developer.apple.com/ios/human-interface-guidelines/ui-views/alerts/>
class
CupertinoAlertDialog
extends
StatelessWidget
{
/// Creates an iOS-style alert dialog.
CupertinoAlertDialog
({
Key
key
,
this
.
title
,
this
.
content
,
this
.
actions
,
})
:
super
(
key:
key
);
/// The (optional) title of the dialog is displayed in a large font at the top
/// of the dialog.
///
/// Typically a [Text] widget.
final
Widget
title
;
/// The (optional) content of the dialog is displayed in the center of the
/// dialog in a lighter font.
///
/// Typically a [Text] widget.
final
Widget
content
;
/// The (optional) set of actions that are displayed at the bottom of the
/// dialog.
///
/// Typically this is a list of [CupertinoDialogAction] widgets.
final
List
<
Widget
>
actions
;
@override
Widget
build
(
BuildContext
context
)
{
final
List
<
Widget
>
children
=
<
Widget
>[];
children
.
add
(
new
SizedBox
(
height:
20.0
));
if
(
title
!=
null
)
{
children
.
add
(
new
Padding
(
padding:
const
EdgeInsets
.
symmetric
(
horizontal:
20.0
),
child:
new
DefaultTextStyle
(
style:
_kCupertinoDialogTitleStyle
,
textAlign:
TextAlign
.
center
,
child:
title
,
),
));
}
if
(
content
!=
null
)
{
children
.
add
(
new
Flexible
(
fit:
FlexFit
.
loose
,
child:
new
Padding
(
padding:
const
EdgeInsets
.
symmetric
(
horizontal:
20.0
),
child:
new
DefaultTextStyle
(
style:
_kCupertinoDialogContentStyle
,
textAlign:
TextAlign
.
center
,
child:
content
,
),
),
));
}
children
.
add
(
new
SizedBox
(
height:
20.0
));
if
(
actions
!=
null
)
{
children
.
add
(
new
_CupertinoButtonBar
(
children:
actions
,
));
}
return
new
CupertinoDialog
(
child:
new
Column
(
mainAxisSize:
MainAxisSize
.
min
,
crossAxisAlignment:
CrossAxisAlignment
.
stretch
,
children:
children
,
),
);
}
}
const
Color
_kDestructiveActionColor
=
const
Color
(
0xFFFF3B30
);
/// A button typically used in a [CupertinoAlertDialog].
///
/// See also:
///
/// * [CupertinoAlertDialog]
class
CupertinoDialogAction
extends
StatelessWidget
{
/// Creates an action for an iOS-style dialog.
CupertinoDialogAction
({
this
.
onPressed
,
this
.
isDestructive
:
false
,
@required
this
.
child
,
})
{
assert
(
child
!=
null
);
}
/// The callback that is called when the button is tapped or otherwise activated.
///
/// If this is set to null, the button will be disabled.
final
VoidCallback
onPressed
;
/// Whether this action destroys an object.
///
/// For example, an action that deletes an email is destructive.
final
bool
isDestructive
;
/// The widget below this widget in the tree.
///
/// Typically a [Text] widget.
final
Widget
child
;
/// Whether the button is enabled or disabled. Buttons are disabled by default. To
/// enable a button, set its [onPressed] property to a non-null value.
bool
get
enabled
=>
onPressed
!=
null
;
@override
Widget
build
(
BuildContext
context
)
{
TextStyle
style
=
_kCupertinoDialogActionStyle
;
if
(
isDestructive
)
style
=
style
.
copyWith
(
color:
_kDestructiveActionColor
);
if
(!
enabled
)
style
=
style
.
copyWith
(
color:
style
.
color
.
withOpacity
(
0.5
));
return
new
GestureDetector
(
onTap:
onPressed
,
child:
new
Center
(
child:
new
DefaultTextStyle
(
style:
style
,
child:
child
,
),
),
);
}
}
const
double
_kButtonBarHeight
=
45.0
;
// This color isn't correct. Instead, we should carve a hole in the dialog and
// show more of the background.
const
Color
_kButtonDividerColor
=
const
Color
(
0xFFD5D5D5
);
class
_CupertinoButtonBar
extends
StatelessWidget
{
_CupertinoButtonBar
({
Key
key
,
this
.
children
,
})
:
super
(
key:
key
);
final
List
<
Widget
>
children
;
@override
Widget
build
(
BuildContext
context
)
{
final
List
<
Widget
>
buttons
=
<
Widget
>[];
for
(
Widget
child
in
children
)
{
// TODO(abarth): Listen for the buttons being highlighted.
buttons
.
add
(
new
Expanded
(
child:
child
));
}
return
new
CustomPaint
(
painter:
new
_CupertinoButtonBarPainter
(
children
.
length
),
child:
new
SizedBox
(
height:
_kButtonBarHeight
,
child:
new
Row
(
crossAxisAlignment:
CrossAxisAlignment
.
stretch
,
children:
buttons
),
)
);
}
}
class
_CupertinoButtonBarPainter
extends
CustomPainter
{
_CupertinoButtonBarPainter
(
this
.
count
);
final
int
count
;
@override
void
paint
(
Canvas
canvas
,
Size
size
)
{
final
Paint
paint
=
new
Paint
()
..
color
=
_kButtonDividerColor
;
canvas
.
drawLine
(
Point
.
origin
,
new
Point
(
size
.
width
,
0.0
),
paint
);
for
(
int
i
=
1
;
i
<
count
;
++
i
)
{
// TODO(abarth): Hide the divider when one of the adjacent buttons is
// highlighted.
final
double
x
=
size
.
width
*
i
/
count
;
canvas
.
drawLine
(
new
Point
(
x
,
0.0
),
new
Point
(
x
,
size
.
height
),
paint
);
}
}
@override
bool
shouldRepaint
(
_CupertinoButtonBarPainter
other
)
=>
count
!=
other
.
count
;
}
packages/flutter/lib/src/material/dialog.dart
View file @
68425979
...
...
@@ -34,6 +34,7 @@ class Dialog extends StatelessWidget {
this
.
child
,
})
:
super
(
key:
key
);
/// The widget below this widget in the tree.
final
Widget
child
;
Color
_getColor
(
BuildContext
context
)
{
...
...
@@ -137,8 +138,8 @@ class AlertDialog extends StatelessWidget {
padding:
titlePadding
??
new
EdgeInsets
.
fromLTRB
(
24.0
,
24.0
,
24.0
,
content
==
null
?
20.0
:
0.0
),
child:
new
DefaultTextStyle
(
style:
Theme
.
of
(
context
).
textTheme
.
title
,
child:
title
)
child:
title
,
)
,
));
}
...
...
@@ -149,17 +150,17 @@ class AlertDialog extends StatelessWidget {
padding:
contentPadding
??
const
EdgeInsets
.
fromLTRB
(
24.0
,
20.0
,
24.0
,
24.0
),
child:
new
DefaultTextStyle
(
style:
Theme
.
of
(
context
).
textTheme
.
subhead
,
child:
content
)
)
child:
content
,
)
,
)
,
));
}
if
(
actions
!=
null
)
{
children
.
add
(
new
ButtonTheme
.
bar
(
child:
new
ButtonBar
(
children:
actions
)
children:
actions
,
)
,
));
}
...
...
@@ -168,9 +169,9 @@ class AlertDialog extends StatelessWidget {
child:
new
Column
(
mainAxisSize:
MainAxisSize
.
min
,
crossAxisAlignment:
CrossAxisAlignment
.
stretch
,
children:
children
)
)
children:
children
,
)
,
)
,
);
}
}
...
...
packages/flutter/lib/src/material/typography.dart
View file @
68425979
...
...
@@ -78,30 +78,30 @@ class TextTheme {
button
=
const
TextStyle
(
fontFamily:
'Roboto'
,
inherit:
false
,
fontSize:
14.0
,
fontWeight:
FontWeight
.
w500
,
color:
Colors
.
white
,
textBaseline:
TextBaseline
.
alphabetic
);
const
TextTheme
.
_blackCupertino
()
:
display4
=
const
TextStyle
(
fontFamily:
'.SF UI Display'
,
inherit:
false
,
fontSize:
112.0
,
fontWeight:
FontWeight
.
w100
,
color:
Colors
.
black54
,
textBaseline:
TextBaseline
.
alphabetic
),
display3
=
const
TextStyle
(
fontFamily:
'.SF UI Display'
,
inherit:
false
,
fontSize:
56.0
,
fontWeight:
FontWeight
.
w400
,
color:
Colors
.
black54
,
textBaseline:
TextBaseline
.
alphabetic
),
display2
=
const
TextStyle
(
fontFamily:
'.SF UI Display'
,
inherit:
false
,
fontSize:
45.0
,
fontWeight:
FontWeight
.
w400
,
color:
Colors
.
black54
,
textBaseline:
TextBaseline
.
alphabetic
),
display1
=
const
TextStyle
(
fontFamily:
'.SF UI Display'
,
inherit:
false
,
fontSize:
34.0
,
fontWeight:
FontWeight
.
w400
,
color:
Colors
.
black54
,
textBaseline:
TextBaseline
.
alphabetic
),
headline
=
const
TextStyle
(
fontFamily:
'.SF UI Display'
,
inherit:
false
,
fontSize:
24.0
,
fontWeight:
FontWeight
.
w400
,
color:
Colors
.
black87
,
textBaseline:
TextBaseline
.
alphabetic
),
title
=
const
TextStyle
(
fontFamily:
'.SF UI Display'
,
inherit:
false
,
fontSize:
20.0
,
fontWeight:
FontWeight
.
w500
,
color:
Colors
.
black87
,
textBaseline:
TextBaseline
.
alphabetic
),
subhead
=
const
TextStyle
(
fontFamily:
'.SF UI Text'
,
inherit:
false
,
fontSize:
16.0
,
fontWeight:
FontWeight
.
w400
,
color:
Colors
.
black87
,
textBaseline:
TextBaseline
.
alphabetic
),
body2
=
const
TextStyle
(
fontFamily:
'.SF UI Text'
,
inherit:
false
,
fontSize:
14.0
,
fontWeight:
FontWeight
.
w500
,
color:
Colors
.
black87
,
textBaseline:
TextBaseline
.
alphabetic
),
body1
=
const
TextStyle
(
fontFamily:
'.SF UI Text'
,
inherit:
false
,
fontSize:
14.0
,
fontWeight:
FontWeight
.
w400
,
color:
Colors
.
black87
,
textBaseline:
TextBaseline
.
alphabetic
),
caption
=
const
TextStyle
(
fontFamily:
'.SF UI Text'
,
inherit:
false
,
fontSize:
12.0
,
fontWeight:
FontWeight
.
w400
,
color:
Colors
.
black54
,
textBaseline:
TextBaseline
.
alphabetic
),
button
=
const
TextStyle
(
fontFamily:
'.SF UI Text'
,
inherit:
false
,
fontSize:
14.0
,
fontWeight:
FontWeight
.
w500
,
color:
Colors
.
black87
,
textBaseline:
TextBaseline
.
alphabetic
);
:
display4
=
const
TextStyle
(
fontFamily:
'.SF UI Display'
,
inherit:
false
,
fontSize:
112.0
,
fontWeight:
FontWeight
.
w100
,
color:
Colors
.
black54
,
textBaseline:
TextBaseline
.
alphabetic
),
display3
=
const
TextStyle
(
fontFamily:
'.SF UI Display'
,
inherit:
false
,
fontSize:
56.0
,
fontWeight:
FontWeight
.
w400
,
color:
Colors
.
black54
,
textBaseline:
TextBaseline
.
alphabetic
),
display2
=
const
TextStyle
(
fontFamily:
'.SF UI Display'
,
inherit:
false
,
fontSize:
45.0
,
fontWeight:
FontWeight
.
w400
,
color:
Colors
.
black54
,
textBaseline:
TextBaseline
.
alphabetic
),
display1
=
const
TextStyle
(
fontFamily:
'.SF UI Display'
,
inherit:
false
,
fontSize:
34.0
,
fontWeight:
FontWeight
.
w400
,
color:
Colors
.
black54
,
textBaseline:
TextBaseline
.
alphabetic
),
headline
=
const
TextStyle
(
fontFamily:
'.SF UI Display'
,
inherit:
false
,
fontSize:
24.0
,
fontWeight:
FontWeight
.
w400
,
color:
Colors
.
black87
,
textBaseline:
TextBaseline
.
alphabetic
),
title
=
const
TextStyle
(
fontFamily:
'.SF UI Display'
,
inherit:
false
,
fontSize:
20.0
,
fontWeight:
FontWeight
.
w500
,
color:
Colors
.
black87
,
textBaseline:
TextBaseline
.
alphabetic
),
subhead
=
const
TextStyle
(
fontFamily:
'.SF UI Text'
,
inherit:
false
,
fontSize:
16.0
,
fontWeight:
FontWeight
.
w400
,
color:
Colors
.
black87
,
textBaseline:
TextBaseline
.
alphabetic
),
body2
=
const
TextStyle
(
fontFamily:
'.SF UI Text'
,
inherit:
false
,
fontSize:
14.0
,
fontWeight:
FontWeight
.
w500
,
color:
Colors
.
black87
,
textBaseline:
TextBaseline
.
alphabetic
),
body1
=
const
TextStyle
(
fontFamily:
'.SF UI Text'
,
inherit:
false
,
fontSize:
14.0
,
fontWeight:
FontWeight
.
w400
,
color:
Colors
.
black87
,
textBaseline:
TextBaseline
.
alphabetic
),
caption
=
const
TextStyle
(
fontFamily:
'.SF UI Text'
,
inherit:
false
,
fontSize:
12.0
,
fontWeight:
FontWeight
.
w400
,
color:
Colors
.
black54
,
textBaseline:
TextBaseline
.
alphabetic
),
button
=
const
TextStyle
(
fontFamily:
'.SF UI Text'
,
inherit:
false
,
fontSize:
14.0
,
fontWeight:
FontWeight
.
w500
,
color:
Colors
.
black87
,
textBaseline:
TextBaseline
.
alphabetic
);
const
TextTheme
.
_whiteCupertino
()
:
display4
=
const
TextStyle
(
fontFamily:
'.SF UI Display'
,
inherit:
false
,
fontSize:
112.0
,
fontWeight:
FontWeight
.
w100
,
color:
Colors
.
white70
,
textBaseline:
TextBaseline
.
alphabetic
),
display3
=
const
TextStyle
(
fontFamily:
'.SF UI Display'
,
inherit:
false
,
fontSize:
56.0
,
fontWeight:
FontWeight
.
w400
,
color:
Colors
.
white70
,
textBaseline:
TextBaseline
.
alphabetic
),
display2
=
const
TextStyle
(
fontFamily:
'.SF UI Display'
,
inherit:
false
,
fontSize:
45.0
,
fontWeight:
FontWeight
.
w400
,
color:
Colors
.
white70
,
textBaseline:
TextBaseline
.
alphabetic
),
display1
=
const
TextStyle
(
fontFamily:
'.SF UI Display'
,
inherit:
false
,
fontSize:
34.0
,
fontWeight:
FontWeight
.
w400
,
color:
Colors
.
white70
,
textBaseline:
TextBaseline
.
alphabetic
),
headline
=
const
TextStyle
(
fontFamily:
'.SF UI Display'
,
inherit:
false
,
fontSize:
24.0
,
fontWeight:
FontWeight
.
w400
,
color:
Colors
.
white
,
textBaseline:
TextBaseline
.
alphabetic
),
title
=
const
TextStyle
(
fontFamily:
'.SF UI Display'
,
inherit:
false
,
fontSize:
20.0
,
fontWeight:
FontWeight
.
w500
,
color:
Colors
.
white
,
textBaseline:
TextBaseline
.
alphabetic
),
subhead
=
const
TextStyle
(
fontFamily:
'.SF UI Text'
,
inherit:
false
,
fontSize:
16.0
,
fontWeight:
FontWeight
.
w400
,
color:
Colors
.
white
,
textBaseline:
TextBaseline
.
alphabetic
),
body2
=
const
TextStyle
(
fontFamily:
'.SF UI Text'
,
inherit:
false
,
fontSize:
14.0
,
fontWeight:
FontWeight
.
w500
,
color:
Colors
.
white
,
textBaseline:
TextBaseline
.
alphabetic
),
body1
=
const
TextStyle
(
fontFamily:
'.SF UI Text'
,
inherit:
false
,
fontSize:
14.0
,
fontWeight:
FontWeight
.
w400
,
color:
Colors
.
white
,
textBaseline:
TextBaseline
.
alphabetic
),
caption
=
const
TextStyle
(
fontFamily:
'.SF UI Text'
,
inherit:
false
,
fontSize:
12.0
,
fontWeight:
FontWeight
.
w400
,
color:
Colors
.
white70
,
textBaseline:
TextBaseline
.
alphabetic
),
button
=
const
TextStyle
(
fontFamily:
'.SF UI Text'
,
inherit:
false
,
fontSize:
14.0
,
fontWeight:
FontWeight
.
w500
,
color:
Colors
.
white
,
textBaseline:
TextBaseline
.
alphabetic
);
:
display4
=
const
TextStyle
(
fontFamily:
'.SF UI Display'
,
inherit:
false
,
fontSize:
112.0
,
fontWeight:
FontWeight
.
w100
,
color:
Colors
.
white70
,
textBaseline:
TextBaseline
.
alphabetic
),
display3
=
const
TextStyle
(
fontFamily:
'.SF UI Display'
,
inherit:
false
,
fontSize:
56.0
,
fontWeight:
FontWeight
.
w400
,
color:
Colors
.
white70
,
textBaseline:
TextBaseline
.
alphabetic
),
display2
=
const
TextStyle
(
fontFamily:
'.SF UI Display'
,
inherit:
false
,
fontSize:
45.0
,
fontWeight:
FontWeight
.
w400
,
color:
Colors
.
white70
,
textBaseline:
TextBaseline
.
alphabetic
),
display1
=
const
TextStyle
(
fontFamily:
'.SF UI Display'
,
inherit:
false
,
fontSize:
34.0
,
fontWeight:
FontWeight
.
w400
,
color:
Colors
.
white70
,
textBaseline:
TextBaseline
.
alphabetic
),
headline
=
const
TextStyle
(
fontFamily:
'.SF UI Display'
,
inherit:
false
,
fontSize:
24.0
,
fontWeight:
FontWeight
.
w400
,
color:
Colors
.
white
,
textBaseline:
TextBaseline
.
alphabetic
),
title
=
const
TextStyle
(
fontFamily:
'.SF UI Display'
,
inherit:
false
,
fontSize:
20.0
,
fontWeight:
FontWeight
.
w500
,
color:
Colors
.
white
,
textBaseline:
TextBaseline
.
alphabetic
),
subhead
=
const
TextStyle
(
fontFamily:
'.SF UI Text'
,
inherit:
false
,
fontSize:
16.0
,
fontWeight:
FontWeight
.
w400
,
color:
Colors
.
white
,
textBaseline:
TextBaseline
.
alphabetic
),
body2
=
const
TextStyle
(
fontFamily:
'.SF UI Text'
,
inherit:
false
,
fontSize:
14.0
,
fontWeight:
FontWeight
.
w500
,
color:
Colors
.
white
,
textBaseline:
TextBaseline
.
alphabetic
),
body1
=
const
TextStyle
(
fontFamily:
'.SF UI Text'
,
inherit:
false
,
fontSize:
14.0
,
fontWeight:
FontWeight
.
w400
,
color:
Colors
.
white
,
textBaseline:
TextBaseline
.
alphabetic
),
caption
=
const
TextStyle
(
fontFamily:
'.SF UI Text'
,
inherit:
false
,
fontSize:
12.0
,
fontWeight:
FontWeight
.
w400
,
color:
Colors
.
white70
,
textBaseline:
TextBaseline
.
alphabetic
),
button
=
const
TextStyle
(
fontFamily:
'.SF UI Text'
,
inherit:
false
,
fontSize:
14.0
,
fontWeight:
FontWeight
.
w500
,
color:
Colors
.
white
,
textBaseline:
TextBaseline
.
alphabetic
);
/// Extremely large text.
///
...
...
packages/flutter/test/cupertino/activity_indicator.dart
→
packages/flutter/test/cupertino/activity_indicator
_test
.dart
View file @
68425979
File moved
packages/flutter/test/cupertino/dialog_test.dart
0 → 100644
View file @
68425979
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'package:flutter/cupertino.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter_test/flutter_test.dart'
;
void
main
(
)
{
testWidgets
(
'Alert dialog control test'
,
(
WidgetTester
tester
)
async
{
bool
didDelete
=
false
;
await
tester
.
pumpWidget
(
new
MaterialApp
(
home:
new
Material
(
child:
new
Center
(
child:
new
Builder
(
builder:
(
BuildContext
context
)
{
return
new
RaisedButton
(
onPressed:
()
{
showDialog
(
context:
context
,
child:
new
CupertinoAlertDialog
(
title:
new
Text
(
'The title'
),
content:
new
Text
(
'The content'
),
actions:
<
Widget
>[
new
CupertinoDialogAction
(
child:
new
Text
(
'Cancel'
),
),
new
CupertinoDialogAction
(
isDestructive:
true
,
onPressed:
()
{
didDelete
=
true
;
Navigator
.
pop
(
context
);
},
child:
new
Text
(
'Delete'
),
),
],
),
);
},
child:
new
Text
(
'Go'
),
);
},
),
),
),
));
await
tester
.
tap
(
find
.
text
(
'Go'
));
await
tester
.
pump
();
await
tester
.
pump
(
const
Duration
(
seconds:
1
));
expect
(
didDelete
,
isFalse
);
await
tester
.
tap
(
find
.
text
(
'Delete'
));
expect
(
didDelete
,
isTrue
);
await
tester
.
pump
();
await
tester
.
pump
(
const
Duration
(
seconds:
1
));
expect
(
find
.
text
(
'Delete'
),
findsNothing
);
});
testWidgets
(
'Dialog action styles'
,
(
WidgetTester
tester
)
async
{
await
tester
.
pumpWidget
(
new
CupertinoDialogAction
(
isDestructive:
true
,
child:
new
Text
(
'Ok'
),
));
DefaultTextStyle
widget
=
tester
.
widget
(
find
.
byType
(
DefaultTextStyle
));
expect
(
widget
.
style
.
color
.
red
,
greaterThan
(
widget
.
style
.
color
.
blue
));
expect
(
widget
.
style
.
color
.
alpha
,
lessThan
(
255
));
});
}
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