File tree Expand file tree Collapse file tree 4 files changed +9
-6
lines changed
experimental/desktop_photo_search/lib Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -82,8 +82,8 @@ class UnsplashHomePage extends StatelessWidget {
82
82
label: 'About ...' ,
83
83
onClicked: () {
84
84
showDialog <void >(
85
- context: context,
86
- builder: (context) => PolicyDialog (),
85
+ context: context,
86
+ builder: (context) => PolicyDialog (),
87
87
);
88
88
},
89
89
),
Original file line number Diff line number Diff line change @@ -45,7 +45,9 @@ class PolicyDialog extends StatelessWidget {
45
45
children: < TextSpan > [
46
46
TextSpan (
47
47
text: 'https://policies.google.com/terms' ,
48
- style: TextStyle (fontWeight: FontWeight .bold, color: Colors .lightBlue),
48
+ style: TextStyle (
49
+ fontWeight: FontWeight .bold,
50
+ color: Colors .lightBlue),
49
51
recognizer: TapGestureRecognizer ()
50
52
..onTap = () async {
51
53
final url = 'https://policies.google.com/terms' ;
@@ -65,7 +67,9 @@ class PolicyDialog extends StatelessWidget {
65
67
children: < TextSpan > [
66
68
TextSpan (
67
69
text: 'https://unsplash.com/terms' ,
68
- style: TextStyle (fontWeight: FontWeight .bold, color: Colors .lightBlue),
70
+ style: TextStyle (
71
+ fontWeight: FontWeight .bold,
72
+ color: Colors .lightBlue),
69
73
recognizer: TapGestureRecognizer ()
70
74
..onTap = () async {
71
75
final url = 'https://unsplash.com/terms' ;
Original file line number Diff line number Diff line change @@ -348,7 +348,7 @@ samples:
348
348
alt : Form App screenshot
349
349
- url : images/form_app3.png
350
350
alt : Form App screenshot
351
- source : https://github.com/flutter/samples/tree/master/experimental/ form_app
351
+ source : https://github.com/flutter/samples/tree/master/form_app
352
352
description : >
353
353
A Flutter sample app that shows how to use Forms.
354
354
difficulty : intermediate
Original file line number Diff line number Diff line change @@ -24,4 +24,3 @@ dev_dependencies:
24
24
build_web_compilers : ^2.7.0
25
25
tuneup : ^0.3.6
26
26
image : ^2.1.0
27
-
You can’t perform that action at this time.
0 commit comments