Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions flutter_ci_script_beta.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ declare -a CODELABS=(
"github-graphql-client"
"google-maps-in-flutter"
"startup_namer"
"startup_namer_null_safety"
# Tracking issue: https://github.com/flutter/flutter/issues/74209
# "testing_codelab"
)
Expand Down
1 change: 1 addition & 0 deletions flutter_ci_script_dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ declare -a CODELABS=(
"github-graphql-client"
"google-maps-in-flutter"
"startup_namer"
"startup_namer_null_safety"
# Tracking issue: https://github.com/flutter/flutter/issues/74209
# "testing_codelab"
)
Expand Down
2 changes: 2 additions & 0 deletions flutter_ci_script_stable.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ declare -a CODELABS=(
"github-graphql-client"
"google-maps-in-flutter"
"startup_namer"
# TODO(domesticmouse): uncomment when null safety goes stable
# "startup_namer_null_safety"
"testing_codelab"
)

Expand Down
8 changes: 8 additions & 0 deletions startup_namer_null_safety/.idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

204 changes: 204 additions & 0 deletions startup_namer_null_safety/.idea/libraries/Dart_Packages.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 28 additions & 0 deletions startup_namer_null_safety/.idea/libraries/Dart_SDK.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions startup_namer_null_safety/.idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 36 additions & 0 deletions startup_namer_null_safety/.idea/startup_namer_migrated.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions startup_namer_null_safety/.idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions startup_namer_null_safety/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
This example is used by three codelabs.

Folders 1 through 4:

- https://codelabs.developers.google.com/codelabs/first-flutter-app-pt1
- https://flutter.io/docs/get-started/codelab

Folders 5 through 8:

- https://codelabs.developers.google.com/codelabs/first-flutter-app-pt2
(This codelab doesn't live on flutter.dev.)
1 change: 1 addition & 0 deletions startup_namer_null_safety/step1_base/analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include: package:pedantic/analysis_options.yaml
Binary file not shown.
24 changes: 24 additions & 0 deletions startup_namer_null_safety/step1_base/lib/main.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// Copyright 2018 The Flutter team. 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/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Welcome to Flutter',
home: Scaffold(
appBar: AppBar(
title: Text('Welcome to Flutter'),
),
body: Center(
child: Text('Hello World'),
),
),
);
}
}
Loading