mirror of
https://github.com/flutter/samples.git
synced 2025-11-08 22:09:06 +00:00
[samples_index] updated source code url for form_app (#688)
This commit is contained in:
@@ -82,8 +82,8 @@ class UnsplashHomePage extends StatelessWidget {
|
|||||||
label: 'About ...',
|
label: 'About ...',
|
||||||
onClicked: () {
|
onClicked: () {
|
||||||
showDialog<void>(
|
showDialog<void>(
|
||||||
context: context,
|
context: context,
|
||||||
builder: (context) => PolicyDialog(),
|
builder: (context) => PolicyDialog(),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -45,7 +45,9 @@ class PolicyDialog extends StatelessWidget {
|
|||||||
children: <TextSpan>[
|
children: <TextSpan>[
|
||||||
TextSpan(
|
TextSpan(
|
||||||
text: 'https://policies.google.com/terms',
|
text: 'https://policies.google.com/terms',
|
||||||
style: TextStyle(fontWeight: FontWeight.bold, color: Colors.lightBlue),
|
style: TextStyle(
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
color: Colors.lightBlue),
|
||||||
recognizer: TapGestureRecognizer()
|
recognizer: TapGestureRecognizer()
|
||||||
..onTap = () async {
|
..onTap = () async {
|
||||||
final url = 'https://policies.google.com/terms';
|
final url = 'https://policies.google.com/terms';
|
||||||
@@ -65,7 +67,9 @@ class PolicyDialog extends StatelessWidget {
|
|||||||
children: <TextSpan>[
|
children: <TextSpan>[
|
||||||
TextSpan(
|
TextSpan(
|
||||||
text: 'https://unsplash.com/terms',
|
text: 'https://unsplash.com/terms',
|
||||||
style: TextStyle(fontWeight: FontWeight.bold, color: Colors.lightBlue),
|
style: TextStyle(
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
color: Colors.lightBlue),
|
||||||
recognizer: TapGestureRecognizer()
|
recognizer: TapGestureRecognizer()
|
||||||
..onTap = () async {
|
..onTap = () async {
|
||||||
final url = 'https://unsplash.com/terms';
|
final url = 'https://unsplash.com/terms';
|
||||||
|
|||||||
@@ -348,7 +348,7 @@ samples:
|
|||||||
alt: Form App screenshot
|
alt: Form App screenshot
|
||||||
- url: images/form_app3.png
|
- url: images/form_app3.png
|
||||||
alt: Form App screenshot
|
alt: Form App screenshot
|
||||||
source: https://github.com/flutter/samples/tree/master/experimental/form_app
|
source: https://github.com/flutter/samples/tree/master/form_app
|
||||||
description: >
|
description: >
|
||||||
A Flutter sample app that shows how to use Forms.
|
A Flutter sample app that shows how to use Forms.
|
||||||
difficulty: intermediate
|
difficulty: intermediate
|
||||||
|
|||||||
@@ -24,4 +24,3 @@ dev_dependencies:
|
|||||||
build_web_compilers: ^2.7.0
|
build_web_compilers: ^2.7.0
|
||||||
tuneup: ^0.3.6
|
tuneup: ^0.3.6
|
||||||
image: ^2.1.0
|
image: ^2.1.0
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user