diff --git a/boring_to_beautiful/codelab_rebuild.yaml b/boring_to_beautiful/codelab_rebuild.yaml
index adb96fcf8a..c16fd18ba3 100644
--- a/boring_to_beautiful/codelab_rebuild.yaml
+++ b/boring_to_beautiful/codelab_rebuild.yaml
@@ -77,23 +77,21 @@ steps:
com.apple.security.cs.allow-jit
- + com.apple.security.network.client
- +
com.apple.security.network.server
+ + com.apple.security.network.client
+ +
- name: Patch macos/Runner/Release.entitlements
path: myartist/macos/Runner/Release.entitlements
patch-u: |
--- b/boring_to_beautiful/step_01/macos/Runner/Release.entitlements
+++ a/boring_to_beautiful/step_01/macos/Runner/Release.entitlements
- @@ -4,5 +4,9 @@
+ @@ -4,5 +4,7 @@
com.apple.security.app-sandbox
+ com.apple.security.network.client
- +
- + com.apple.security.network.server
+
@@ -73806,12 +73804,12 @@ steps:
- name: flutter doctor
path: myartist
flutter: doctor
- - name: flutter pub run build_runner
+ - name: dart run build_runner build --delete-conflicting-outputs
path: myartist
- flutter: pub run build_runner build
- - name: Format generated file
+ dart: run build_runner build --delete-conflicting-outputs
+ - name: dart analyze
path: myartist
- dart: format ./lib/src/shared/playback/bloc/playback_bloc.freezed.dart
+ dart: analyze --fatal-infos
- name: Build iOS simulator bundle
platforms: [macos]
path: myartist
@@ -73828,12 +73826,6 @@ steps:
platforms: [windows]
path: myartist
flutter: build windows
- - name: dart run build_runner build --delete-conflicting-outputs
- path: myartist
- dart: run build_runner build --delete-conflicting-outputs
- - name: dart analyze
- path: myartist
- dart: analyze --fatal-infos
- name: Copy step_01
copydir:
from: myartist
@@ -73873,17 +73865,6 @@ steps:
route: '/artists',
),
];
- - name: dart analyze
- path: myartist
- dart: analyze --fatal-infos
- - name: Copy step_02
- copydir:
- from: myartist
- to: step_02
- - name: step_03
- steps:
- - name: Remove generated code.
- rmdir: step_03
- name: Add google_fonts
path: myartist
flutter: pub add google_fonts
@@ -73908,14 +73889,17 @@ steps:
- name: dart analyze
path: myartist
dart: analyze --fatal-infos
- - name: Copy step_03
+ - name: Copy step_02
copydir:
from: myartist
- to: step_03
- - name: step_04
+ to: step_02
+ - name: Flutter clean
+ path: step_02
+ flutter: clean
+ - name: step_03
steps:
- name: Remove generated code.
- rmdir: step_04
+ rmdir: step_03
- name: Patch lib/src/shared/app.dart
path: myartist/lib/src/shared/app.dart
patch-u: |
@@ -73960,14 +73944,17 @@ steps:
- name: dart analyze
path: myartist
dart: analyze --fatal-infos
- - name: Copy step_04
+ - name: Copy step_03
copydir:
from: myartist
- to: step_04
- - name: step_05
+ to: step_03
+ - name: Flutter clean
+ path: step_03
+ flutter: clean
+ - name: step_04
steps:
- name: Remove generated code.
- rmdir: step_05
+ rmdir: step_04
- name: Patch lib/src/features/home/view/home_screen.dart
path: myartist/lib/src/features/home/view/home_screen.dart
patch-u: |
@@ -74087,14 +74074,67 @@ steps:
- name: dart analyze
path: myartist
dart: analyze --fatal-infos
- - name: Copy step_05
+ - name: Copy step_04
copydir:
from: myartist
- to: step_05
- - name: step_06
+ to: step_04
+ - name: Flutter clean
+ path: step_04
+ flutter: clean
+ - name: step_05_a
steps:
- name: Remove generated code.
- rmdir: step_06
+ rmdir: step_05_a
+ - name: Patch lib/src/features/home/view/home_screen.dart
+ path: myartist/lib/src/features/home/view/home_screen.dart
+ patch-u: |
+ --- b/boring_to_beautiful/step_05_a/lib/src/features/home/view/home_screen.dart
+ +++ a/boring_to_beautiful/step_05_a/lib/src/features/home/view/home_screen.dart
+ @@ -81,7 +81,7 @@ class _HomeScreenState extends State {
+ AdaptiveContainer(
+ columnSpan: 12,
+ child: Padding(
+ - padding: const EdgeInsets.all(2),
+ + padding: const EdgeInsets.all(35),
+ child: Row(
+ mainAxisAlignment: MainAxisAlignment.spaceBetween,
+ children: [
+ @@ -117,7 +117,7 @@ class _HomeScreenState extends State {
+ crossAxisAlignment: CrossAxisAlignment.start,
+ children: [
+ Padding(
+ - padding: const EdgeInsets.all(2),
+ + padding: const EdgeInsets.all(35),
+ child: Text(
+ 'Recently played',
+ style: context.headlineSmall,
+ @@ -130,7 +130,7 @@ class _HomeScreenState extends State {
+ AdaptiveContainer(
+ columnSpan: 12,
+ child: Padding(
+ - padding: const EdgeInsets.all(2),
+ + padding: const EdgeInsets.all(35),
+ child: Row(
+ crossAxisAlignment: CrossAxisAlignment.start,
+ children: [
+ @@ -141,7 +141,7 @@ class _HomeScreenState extends State {
+ crossAxisAlignment: CrossAxisAlignment.start,
+ children: [
+ Padding(
+ - padding: const EdgeInsets.all(2),
+ + padding: const EdgeInsets.all(35),
+ child: Text(
+ 'Top Songs Today',
+ style: context.titleLarge,
+ @@ -164,7 +164,7 @@ class _HomeScreenState extends State {
+ crossAxisAlignment: CrossAxisAlignment.start,
+ children: [
+ Padding(
+ - padding: const EdgeInsets.all(2),
+ + padding: const EdgeInsets.all(35),
+ child: Text(
+ 'New Releases',
+ style: context.titleLarge,
- name: Patch lib/src/features/home/view/home_highlight.dart
path: myartist/lib/src/features/home/view/home_highlight.dart
patch-u: |
@@ -74109,16 +74149,57 @@ steps:
child: Clickable(
child: SizedBox(
height: 275,
+ - name: dart analyze
+ path: myartist
+ dart: analyze --fatal-infos
+ - name: Copy step_05_a
+ copydir:
+ from: myartist
+ to: step_05_a
+ - name: Flutter clean
+ path: step_05_a
+ flutter: clean
+ - name: step_05_b
+ steps:
+ - name: Remove generated code.
+ rmdir: step_05_b
+ - name: Patch lib/src/features/home/view/home_screen.dart
+ path: myartist/lib/src/features/home/view/home_screen.dart
+ patch-u: |
+ --- b/boring_to_beautiful/step_05_b/lib/src/features/home/view/home_screen.dart
+ +++ a/boring_to_beautiful/step_05_b/lib/src/features/home/view/home_screen.dart
+ @@ -157,6 +157,7 @@ class _HomeScreenState extends State {
+ ],
+ ),
+ ),
+ + const SizedBox(width: 35),
+ Flexible(
+ flex: 10,
+ child: Column(
+ - name: dart analyze
+ path: myartist
+ dart: analyze --fatal-infos
+ - name: Copy step_05_b
+ copydir:
+ from: myartist
+ to: step_05_b
+ - name: Flutter clean
+ path: step_05_b
+ flutter: clean
+ - name: step_05_c
+ steps:
+ - name: Remove generated code.
+ rmdir: step_05_c
- name: Patch lib/src/features/home/view/home_screen.dart
path: myartist/lib/src/features/home/view/home_screen.dart
patch-u: |
- --- b/boring_to_beautiful/step_06/lib/src/features/home/view/home_screen.dart
- +++ a/boring_to_beautiful/step_06/lib/src/features/home/view/home_screen.dart
+ --- b/boring_to_beautiful/step_05_c/lib/src/features/home/view/home_screen.dart
+ +++ a/boring_to_beautiful/step_05_c/lib/src/features/home/view/home_screen.dart
@@ -81,7 +81,7 @@ class _HomeScreenState extends State {
AdaptiveContainer(
columnSpan: 12,
child: Padding(
- - padding: const EdgeInsets.all(2),
+ - padding: const EdgeInsets.all(35),
+ padding: const EdgeInsets.fromLTRB(20, 25, 20, 10),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
@@ -74127,7 +74208,7 @@ steps:
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Padding(
- - padding: const EdgeInsets.all(2),
+ - padding: const EdgeInsets.all(35),
+ padding: const EdgeInsets.symmetric(
+ horizontal: 15,
+ vertical: 10,
@@ -74139,7 +74220,7 @@ steps:
AdaptiveContainer(
columnSpan: 12,
child: Padding(
- - padding: const EdgeInsets.all(2),
+ - padding: const EdgeInsets.all(35),
+ padding: const EdgeInsets.all(15),
child: Row(
crossAxisAlignment: CrossAxisAlignment.start,
@@ -74148,7 +74229,7 @@ steps:
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Padding(
- - padding: const EdgeInsets.all(2),
+ - padding: const EdgeInsets.all(35),
+ padding: const EdgeInsets.only(
+ left: 8,
+ bottom: 8,
@@ -74156,19 +74237,20 @@ steps:
child: Text(
'Top Songs Today',
style: context.titleLarge,
- @@ -157,6 +163,7 @@ class _HomeScreenState extends State {
+ @@ -157,7 +163,7 @@ class _HomeScreenState extends State {
],
),
),
+ - const SizedBox(width: 35),
+ const SizedBox(width: 25),
Flexible(
flex: 10,
child: Column(
- @@ -164,7 +171,10 @@ class _HomeScreenState extends State {
+ @@ -165,7 +171,10 @@ class _HomeScreenState extends State {
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Padding(
- - padding: const EdgeInsets.all(2),
+ - padding: const EdgeInsets.all(35),
+ padding: const EdgeInsets.only(
+ left: 8,
+ bottom: 8,
@@ -74176,17 +74258,34 @@ steps:
child: Text(
'New Releases',
style: context.titleLarge,
+ - name: Patch lib/src/features/home/view/home_highlight.dart
+ path: myartist/lib/src/features/home/view/home_highlight.dart
+ patch-u: |
+ --- b/boring_to_beautiful/step_05_c/lib/src/features/home/view/home_highlight.dart
+ +++ a/boring_to_beautiful/step_05_c/lib/src/features/home/view/home_highlight.dart
+ @@ -16,7 +16,7 @@ class HomeHighlight extends StatelessWidget {
+ children: [
+ Expanded(
+ child: Padding(
+ - padding: const EdgeInsets.all(15),
+ + padding: const EdgeInsets.symmetric(horizontal: 35, vertical: 5),
+ child: Clickable(
+ child: SizedBox(
+ height: 275,
- name: dart analyze
path: myartist
dart: analyze --fatal-infos
- - name: Copy step_06
+ - name: Copy step_05_c
copydir:
from: myartist
- to: step_06
- - name: step_07
+ to: step_05_c
+ - name: Flutter clean
+ path: step_05_c
+ flutter: clean
+ - name: step_06
steps:
- name: Remove generated code.
- rmdir: step_07
+ rmdir: step_06
- name: Patch lib/src/shared/providers/theme.dart
path: myartist/lib/src/shared/providers/theme.dart
patch-u: |
@@ -74211,14 +74310,17 @@ steps:
- name: dart analyze
path: myartist
dart: analyze --fatal-infos
- - name: Copy step_07
+ - name: Copy step_06
copydir:
from: myartist
- to: step_07
- - name: final
+ to: step_06
+ - name: Flutter clean
+ path: step_06
+ flutter: clean
+ - name: step_07
steps:
- name: Remove generated code.
- rmdir: final
+ rmdir: step_07
- name: Patch lib/src/features/playlists/view/playlist_songs.dart
path: myartist/lib/src/features/playlists/view/playlist_songs.dart
patch-u: |
@@ -74331,12 +74433,12 @@ steps:
- name: Build Web app
path: myartist
flutter: build web
- - name: Copy final
+ - name: Copy step_07
copydir:
from: myartist
- to: final
+ to: step_07
- name: Flutter clean
- path: final
+ path: step_07
flutter: clean
- name: Cleanup
rmdir: myartist
diff --git a/boring_to_beautiful/final/lib/src/shared/views/outlined_card.dart b/boring_to_beautiful/final/lib/src/shared/views/outlined_card.dart
deleted file mode 100644
index 1523f99587..0000000000
--- a/boring_to_beautiful/final/lib/src/shared/views/outlined_card.dart
+++ /dev/null
@@ -1,70 +0,0 @@
-// Copyright 2022 The Flutter 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/material.dart';
-
-class OutlinedCard extends StatefulWidget {
- const OutlinedCard({super.key, required this.child, this.clickable = true});
-
- final Widget child;
- final bool clickable;
-
- @override
- State createState() => _OutlinedCardState();
-}
-
-class _OutlinedCardState extends State {
- bool _hovered = false;
-
- @override
- Widget build(BuildContext context) {
- final borderRadius = BorderRadius.circular(_hovered ? 20 : 8);
- const animationCurve = Curves.easeInOut;
- return MouseRegion(
- onEnter: (_) {
- if (!widget.clickable) return;
- setState(() {
- _hovered = true;
- });
- },
- onExit: (_) {
- if (!widget.clickable) return;
- setState(() {
- _hovered = false;
- });
- },
- cursor: widget.clickable
- ? SystemMouseCursors.click
- : SystemMouseCursors.basic,
- child: AnimatedContainer(
- duration: kThemeAnimationDuration,
- curve: animationCurve,
- decoration: BoxDecoration(
- border: Border.all(
- color: Theme.of(context).colorScheme.outline,
- width: 1,
- ),
- borderRadius: borderRadius,
- ),
- foregroundDecoration: BoxDecoration(
- color: Theme.of(
- context,
- ).colorScheme.onSurface.withAlpha(_hovered ? 30 : 0),
- borderRadius: borderRadius,
- ),
- child: TweenAnimationBuilder(
- duration: kThemeAnimationDuration,
- curve: animationCurve,
- tween: Tween(begin: BorderRadius.zero, end: borderRadius),
- builder: (context, borderRadius, child) => ClipRRect(
- clipBehavior: Clip.antiAlias,
- borderRadius: borderRadius,
- child: child,
- ),
- child: widget.child,
- ),
- ),
- );
- }
-}
diff --git a/boring_to_beautiful/step_01/ios/Runner.xcodeproj/project.pbxproj b/boring_to_beautiful/step_01/ios/Runner.xcodeproj/project.pbxproj
index ebb1244e8b..c30322fdf6 100644
--- a/boring_to_beautiful/step_01/ios/Runner.xcodeproj/project.pbxproj
+++ b/boring_to_beautiful/step_01/ios/Runner.xcodeproj/project.pbxproj
@@ -7,15 +7,15 @@
objects = {
/* Begin PBXBuildFile section */
- 0BA3C72CFF7FB3D58116BBE0 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6DC3026E0A86AC8F0F5BE9D2 /* Pods_RunnerTests.framework */; };
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
- 28D4EB9BC109C11A38856D7C /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 94F9D966F17CC87BA26C213A /* Pods_Runner.framework */; };
+ 31AC9F1F861163CE474DC0DF /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D0BA15459E839D3553B26934 /* Pods_Runner.framework */; };
331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
+ C4EE9B5B592653F634344186 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E2086F275166C6948CE70FC0 /* Pods_RunnerTests.framework */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
@@ -42,20 +42,18 @@
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
- 018597106C8E38C2A20B56DC /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = ""; };
- 1454C98E0DB9BDD277830752 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; };
+ 06C27BF5D7B993BB5DCB8D21 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; };
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; };
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; };
- 164233455F6E52D976E7619C /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = ""; };
- 203DA535161F6F2E1631CA2F /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; };
331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; };
331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
+ 3421F167A26D263533D9C0F8 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; };
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; };
- 6DC3026E0A86AC8F0F5BE9D2 /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ 4ABA081B421BEA588642248C /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = ""; };
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; };
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; };
- 94F9D966F17CC87BA26C213A /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ 8367A59A9CDAA6556FC2822B /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; };
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; };
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; };
97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
@@ -63,8 +61,10 @@
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
- E367CC7226100F29F71405B1 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; };
- FAB89AD13AACCB9650BBE6EA /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = ""; };
+ 9BB58392A543FF4660B2490F /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = ""; };
+ D0BA15459E839D3553B26934 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ E2086F275166C6948CE70FC0 /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ F7B65A9BC4B475ABEC573986 /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = ""; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
@@ -72,15 +72,15 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 28D4EB9BC109C11A38856D7C /* Pods_Runner.framework in Frameworks */,
+ 31AC9F1F861163CE474DC0DF /* Pods_Runner.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- BFB82CA3C890A718124E1EDE /* Frameworks */ = {
+ F9E0A4607079935C37BF168F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 0BA3C72CFF7FB3D58116BBE0 /* Pods_RunnerTests.framework in Frameworks */,
+ C4EE9B5B592653F634344186 /* Pods_RunnerTests.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -95,15 +95,15 @@
path = RunnerTests;
sourceTree = "";
};
- 7A1ACBFB4AEFAC5081D802E1 /* Pods */ = {
+ 44BD8D06CB822F8C423FCD72 /* Pods */ = {
isa = PBXGroup;
children = (
- E367CC7226100F29F71405B1 /* Pods-Runner.debug.xcconfig */,
- 1454C98E0DB9BDD277830752 /* Pods-Runner.release.xcconfig */,
- 203DA535161F6F2E1631CA2F /* Pods-Runner.profile.xcconfig */,
- FAB89AD13AACCB9650BBE6EA /* Pods-RunnerTests.debug.xcconfig */,
- 018597106C8E38C2A20B56DC /* Pods-RunnerTests.release.xcconfig */,
- 164233455F6E52D976E7619C /* Pods-RunnerTests.profile.xcconfig */,
+ 3421F167A26D263533D9C0F8 /* Pods-Runner.debug.xcconfig */,
+ 8367A59A9CDAA6556FC2822B /* Pods-Runner.release.xcconfig */,
+ 06C27BF5D7B993BB5DCB8D21 /* Pods-Runner.profile.xcconfig */,
+ F7B65A9BC4B475ABEC573986 /* Pods-RunnerTests.debug.xcconfig */,
+ 4ABA081B421BEA588642248C /* Pods-RunnerTests.release.xcconfig */,
+ 9BB58392A543FF4660B2490F /* Pods-RunnerTests.profile.xcconfig */,
);
name = Pods;
path = Pods;
@@ -127,8 +127,8 @@
97C146F01CF9000F007C117D /* Runner */,
97C146EF1CF9000F007C117D /* Products */,
331C8082294A63A400263BE5 /* RunnerTests */,
- 7A1ACBFB4AEFAC5081D802E1 /* Pods */,
- AD091A7825928A7EC8BC6AD6 /* Frameworks */,
+ 44BD8D06CB822F8C423FCD72 /* Pods */,
+ D054066A4956E2C378EF4A32 /* Frameworks */,
);
sourceTree = "";
};
@@ -156,11 +156,11 @@
path = Runner;
sourceTree = "";
};
- AD091A7825928A7EC8BC6AD6 /* Frameworks */ = {
+ D054066A4956E2C378EF4A32 /* Frameworks */ = {
isa = PBXGroup;
children = (
- 94F9D966F17CC87BA26C213A /* Pods_Runner.framework */,
- 6DC3026E0A86AC8F0F5BE9D2 /* Pods_RunnerTests.framework */,
+ D0BA15459E839D3553B26934 /* Pods_Runner.framework */,
+ E2086F275166C6948CE70FC0 /* Pods_RunnerTests.framework */,
);
name = Frameworks;
sourceTree = "";
@@ -172,10 +172,10 @@
isa = PBXNativeTarget;
buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
buildPhases = (
- D8787C4471D00A25C41EA2CB /* [CP] Check Pods Manifest.lock */,
+ 001D1E85333DF9609D34BC08 /* [CP] Check Pods Manifest.lock */,
331C807D294A63A400263BE5 /* Sources */,
331C807F294A63A400263BE5 /* Resources */,
- BFB82CA3C890A718124E1EDE /* Frameworks */,
+ F9E0A4607079935C37BF168F /* Frameworks */,
);
buildRules = (
);
@@ -191,14 +191,14 @@
isa = PBXNativeTarget;
buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
buildPhases = (
- 62E6FB6D8F5E3A7C56D8737D /* [CP] Check Pods Manifest.lock */,
+ 1975AD24A5DD7DE3F4DE1B61 /* [CP] Check Pods Manifest.lock */,
9740EEB61CF901F6004384FC /* Run Script */,
97C146EA1CF9000F007C117D /* Sources */,
97C146EB1CF9000F007C117D /* Frameworks */,
97C146EC1CF9000F007C117D /* Resources */,
9705A1C41CF9048500538489 /* Embed Frameworks */,
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
- 72DCD364ECC5EFBE76A41B99 /* [CP] Embed Pods Frameworks */,
+ 26E7569DC25C33E17720D218 /* [CP] Embed Pods Frameworks */,
);
buildRules = (
);
@@ -270,23 +270,29 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
- 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
+ 001D1E85333DF9609D34BC08 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
- alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
+ inputFileListPaths = (
+ );
inputPaths = (
- "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
+ "${PODS_ROOT}/Manifest.lock",
+ );
+ name = "[CP] Check Pods Manifest.lock";
+ outputFileListPaths = (
);
- name = "Thin Binary";
outputPaths = (
+ "$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
+ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
+ showEnvVarsInLog = 0;
};
- 62E6FB6D8F5E3A7C56D8737D /* [CP] Check Pods Manifest.lock */ = {
+ 1975AD24A5DD7DE3F4DE1B61 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -308,7 +314,7 @@
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
- 72DCD364ECC5EFBE76A41B99 /* [CP] Embed Pods Frameworks */ = {
+ 26E7569DC25C33E17720D218 /* [CP] Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -325,42 +331,36 @@
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
- 9740EEB61CF901F6004384FC /* Run Script */ = {
+ 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
isa = PBXShellScriptBuildPhase;
alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
+ "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
);
- name = "Run Script";
+ name = "Thin Binary";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
+ shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
};
- D8787C4471D00A25C41EA2CB /* [CP] Check Pods Manifest.lock */ = {
+ 9740EEB61CF901F6004384FC /* Run Script */ = {
isa = PBXShellScriptBuildPhase;
+ alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
- inputFileListPaths = (
- );
inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputFileListPaths = (
);
+ name = "Run Script";
outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
- showEnvVarsInLog = 0;
+ shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
};
/* End PBXShellScriptBuildPhase section */
@@ -487,7 +487,7 @@
};
331C8088294A63A400263BE5 /* Debug */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = FAB89AD13AACCB9650BBE6EA /* Pods-RunnerTests.debug.xcconfig */;
+ baseConfigurationReference = F7B65A9BC4B475ABEC573986 /* Pods-RunnerTests.debug.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CODE_SIGN_STYLE = Automatic;
@@ -505,7 +505,7 @@
};
331C8089294A63A400263BE5 /* Release */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 018597106C8E38C2A20B56DC /* Pods-RunnerTests.release.xcconfig */;
+ baseConfigurationReference = 4ABA081B421BEA588642248C /* Pods-RunnerTests.release.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CODE_SIGN_STYLE = Automatic;
@@ -521,7 +521,7 @@
};
331C808A294A63A400263BE5 /* Profile */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 164233455F6E52D976E7619C /* Pods-RunnerTests.profile.xcconfig */;
+ baseConfigurationReference = 9BB58392A543FF4660B2490F /* Pods-RunnerTests.profile.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CODE_SIGN_STYLE = Automatic;
diff --git a/boring_to_beautiful/step_01/macos/Runner.xcodeproj/project.pbxproj b/boring_to_beautiful/step_01/macos/Runner.xcodeproj/project.pbxproj
index 6ae862c37d..79fced16c3 100644
--- a/boring_to_beautiful/step_01/macos/Runner.xcodeproj/project.pbxproj
+++ b/boring_to_beautiful/step_01/macos/Runner.xcodeproj/project.pbxproj
@@ -21,14 +21,14 @@
/* End PBXAggregateTarget section */
/* Begin PBXBuildFile section */
+ 120C1A7E7D320A31C1211A4A /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AA208D76E7C609C5BAC5DE1C /* Pods_RunnerTests.framework */; };
331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C80D7294CF71000263BE5 /* RunnerTests.swift */; };
335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */; };
33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC10F02044A3C60003C045 /* AppDelegate.swift */; };
33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; };
33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; };
33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; };
- 6A705DC52900C471DF6E1EC6 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C4369DFC5152AD3CC9336DE1 /* Pods_Runner.framework */; };
- 9AEA2C669381F3905C501B66 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A2ED1AFEDE3E0824294F5C6C /* Pods_RunnerTests.framework */; };
+ E344FE031826102CEDE46647 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E265E576032EFCCB6AB10F89 /* Pods_Runner.framework */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
@@ -62,7 +62,7 @@
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
- 049E4603B0A09E05087E56FA /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = ""; };
+ 2BCC07C46EB4E01CE044DBB6 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; };
331C80D5294CF71000263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
331C80D7294CF71000263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; };
333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = ""; };
@@ -79,15 +79,15 @@
33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = ""; };
33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = ""; };
33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = ""; };
- 54CECCDD830654297CBE27CA /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = ""; };
+ 3E5DC3FB470EEF77149E71DD /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; };
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = ""; };
+ 93864140E5DDD8350C71D815 /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = ""; };
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = ""; };
- 9FFE8F2CDA409CA0E1B27D98 /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = ""; };
- A2ED1AFEDE3E0824294F5C6C /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- C4369DFC5152AD3CC9336DE1 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- CE866162E3EE650EB52F3385 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; };
- DF7AD973C56F21946082FE37 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; };
- E9D755A13E508067E98F3444 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; };
+ 9B293DEC88BD59786AD94EBD /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; };
+ AA208D76E7C609C5BAC5DE1C /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ E265E576032EFCCB6AB10F89 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ EEFA0ABEA58A1E38E7AD7041 /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = ""; };
+ FDBDA46A6FE6381EE95E5A7A /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = ""; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
@@ -95,7 +95,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 9AEA2C669381F3905C501B66 /* Pods_RunnerTests.framework in Frameworks */,
+ 120C1A7E7D320A31C1211A4A /* Pods_RunnerTests.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -103,7 +103,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 6A705DC52900C471DF6E1EC6 /* Pods_Runner.framework in Frameworks */,
+ E344FE031826102CEDE46647 /* Pods_Runner.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -137,7 +137,7 @@
331C80D6294CF71000263BE5 /* RunnerTests */,
33CC10EE2044A3C60003C045 /* Products */,
D73912EC22F37F3D000D13A0 /* Frameworks */,
- D3381829CD41C2D96B6F2B3E /* Pods */,
+ 6CDFAAD29A585E1E7DFB128C /* Pods */,
);
sourceTree = "";
};
@@ -185,15 +185,15 @@
path = Runner;
sourceTree = "";
};
- D3381829CD41C2D96B6F2B3E /* Pods */ = {
+ 6CDFAAD29A585E1E7DFB128C /* Pods */ = {
isa = PBXGroup;
children = (
- E9D755A13E508067E98F3444 /* Pods-Runner.debug.xcconfig */,
- CE866162E3EE650EB52F3385 /* Pods-Runner.release.xcconfig */,
- DF7AD973C56F21946082FE37 /* Pods-Runner.profile.xcconfig */,
- 9FFE8F2CDA409CA0E1B27D98 /* Pods-RunnerTests.debug.xcconfig */,
- 049E4603B0A09E05087E56FA /* Pods-RunnerTests.release.xcconfig */,
- 54CECCDD830654297CBE27CA /* Pods-RunnerTests.profile.xcconfig */,
+ 3E5DC3FB470EEF77149E71DD /* Pods-Runner.debug.xcconfig */,
+ 2BCC07C46EB4E01CE044DBB6 /* Pods-Runner.release.xcconfig */,
+ 9B293DEC88BD59786AD94EBD /* Pods-Runner.profile.xcconfig */,
+ 93864140E5DDD8350C71D815 /* Pods-RunnerTests.debug.xcconfig */,
+ FDBDA46A6FE6381EE95E5A7A /* Pods-RunnerTests.release.xcconfig */,
+ EEFA0ABEA58A1E38E7AD7041 /* Pods-RunnerTests.profile.xcconfig */,
);
name = Pods;
path = Pods;
@@ -202,8 +202,8 @@
D73912EC22F37F3D000D13A0 /* Frameworks */ = {
isa = PBXGroup;
children = (
- C4369DFC5152AD3CC9336DE1 /* Pods_Runner.framework */,
- A2ED1AFEDE3E0824294F5C6C /* Pods_RunnerTests.framework */,
+ E265E576032EFCCB6AB10F89 /* Pods_Runner.framework */,
+ AA208D76E7C609C5BAC5DE1C /* Pods_RunnerTests.framework */,
);
name = Frameworks;
sourceTree = "";
@@ -215,7 +215,7 @@
isa = PBXNativeTarget;
buildConfigurationList = 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
buildPhases = (
- C59A11FAACC96E6D468156D2 /* [CP] Check Pods Manifest.lock */,
+ 36CFF57A21336FA90DED8C50 /* [CP] Check Pods Manifest.lock */,
331C80D1294CF70F00263BE5 /* Sources */,
331C80D2294CF70F00263BE5 /* Frameworks */,
331C80D3294CF70F00263BE5 /* Resources */,
@@ -234,13 +234,13 @@
isa = PBXNativeTarget;
buildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */;
buildPhases = (
- 33528B7408CACCE07D6DAD0F /* [CP] Check Pods Manifest.lock */,
+ 41EDDA96C09EE65F003D69E0 /* [CP] Check Pods Manifest.lock */,
33CC10E92044A3C60003C045 /* Sources */,
33CC10EA2044A3C60003C045 /* Frameworks */,
33CC10EB2044A3C60003C045 /* Resources */,
33CC110E2044A8840003C045 /* Bundle Framework */,
3399D490228B24CF009A79C7 /* ShellScript */,
- C6A4842BF1A9A85A617B12E2 /* [CP] Embed Pods Frameworks */,
+ 0F169C1C0F5EE8E3D274E72F /* [CP] Embed Pods Frameworks */,
);
buildRules = (
);
@@ -323,26 +323,21 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
- 33528B7408CACCE07D6DAD0F /* [CP] Check Pods Manifest.lock */ = {
+ 0F169C1C0F5EE8E3D274E72F /* [CP] Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
+ "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
);
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
+ name = "[CP] Embed Pods Frameworks";
outputFileListPaths = (
- );
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
+ "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
3399D490228B24CF009A79C7 /* ShellScript */ = {
@@ -383,7 +378,7 @@
shellPath = /bin/sh;
shellScript = "\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh && touch Flutter/ephemeral/tripwire";
};
- C59A11FAACC96E6D468156D2 /* [CP] Check Pods Manifest.lock */ = {
+ 36CFF57A21336FA90DED8C50 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -405,21 +400,26 @@
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
- C6A4842BF1A9A85A617B12E2 /* [CP] Embed Pods Frameworks */ = {
+ 41EDDA96C09EE65F003D69E0 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
);
- name = "[CP] Embed Pods Frameworks";
+ inputPaths = (
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
+ "${PODS_ROOT}/Manifest.lock",
+ );
+ name = "[CP] Check Pods Manifest.lock";
outputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
+ );
+ outputPaths = (
+ "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
+ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
/* End PBXShellScriptBuildPhase section */
@@ -473,7 +473,7 @@
/* Begin XCBuildConfiguration section */
331C80DB294CF71000263BE5 /* Debug */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 9FFE8F2CDA409CA0E1B27D98 /* Pods-RunnerTests.debug.xcconfig */;
+ baseConfigurationReference = 93864140E5DDD8350C71D815 /* Pods-RunnerTests.debug.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CURRENT_PROJECT_VERSION = 1;
@@ -488,7 +488,7 @@
};
331C80DC294CF71000263BE5 /* Release */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 049E4603B0A09E05087E56FA /* Pods-RunnerTests.release.xcconfig */;
+ baseConfigurationReference = FDBDA46A6FE6381EE95E5A7A /* Pods-RunnerTests.release.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CURRENT_PROJECT_VERSION = 1;
@@ -503,7 +503,7 @@
};
331C80DD294CF71000263BE5 /* Profile */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 54CECCDD830654297CBE27CA /* Pods-RunnerTests.profile.xcconfig */;
+ baseConfigurationReference = EEFA0ABEA58A1E38E7AD7041 /* Pods-RunnerTests.profile.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CURRENT_PROJECT_VERSION = 1;
diff --git a/boring_to_beautiful/step_01/macos/Runner/DebugProfile.entitlements b/boring_to_beautiful/step_01/macos/Runner/DebugProfile.entitlements
index 3ba6c1266f..08c3ab17cc 100644
--- a/boring_to_beautiful/step_01/macos/Runner/DebugProfile.entitlements
+++ b/boring_to_beautiful/step_01/macos/Runner/DebugProfile.entitlements
@@ -6,9 +6,9 @@
com.apple.security.cs.allow-jit
- com.apple.security.network.client
-
com.apple.security.network.server
+ com.apple.security.network.client
+
diff --git a/boring_to_beautiful/step_01/macos/Runner/Release.entitlements b/boring_to_beautiful/step_01/macos/Runner/Release.entitlements
index 7a2230dc33..ee95ab7e58 100644
--- a/boring_to_beautiful/step_01/macos/Runner/Release.entitlements
+++ b/boring_to_beautiful/step_01/macos/Runner/Release.entitlements
@@ -6,7 +6,5 @@
com.apple.security.network.client
- com.apple.security.network.server
-
diff --git a/boring_to_beautiful/step_01/pubspec.yaml b/boring_to_beautiful/step_01/pubspec.yaml
index f5f445fc3a..c05ce106e8 100644
--- a/boring_to_beautiful/step_01/pubspec.yaml
+++ b/boring_to_beautiful/step_01/pubspec.yaml
@@ -17,7 +17,7 @@ dependencies:
english_words: ^4.0.0
flutter_bloc: ^9.1.1
freezed_annotation: ^3.0.0
- go_router: ^15.1.2
+ go_router: ^15.1.3
material_color_utilities: any
universal_platform: ^1.1.0
url_launcher: ^6.3.1
diff --git a/boring_to_beautiful/step_02/ios/Runner.xcodeproj/project.pbxproj b/boring_to_beautiful/step_02/ios/Runner.xcodeproj/project.pbxproj
index ebb1244e8b..c30322fdf6 100644
--- a/boring_to_beautiful/step_02/ios/Runner.xcodeproj/project.pbxproj
+++ b/boring_to_beautiful/step_02/ios/Runner.xcodeproj/project.pbxproj
@@ -7,15 +7,15 @@
objects = {
/* Begin PBXBuildFile section */
- 0BA3C72CFF7FB3D58116BBE0 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6DC3026E0A86AC8F0F5BE9D2 /* Pods_RunnerTests.framework */; };
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
- 28D4EB9BC109C11A38856D7C /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 94F9D966F17CC87BA26C213A /* Pods_Runner.framework */; };
+ 31AC9F1F861163CE474DC0DF /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D0BA15459E839D3553B26934 /* Pods_Runner.framework */; };
331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
+ C4EE9B5B592653F634344186 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E2086F275166C6948CE70FC0 /* Pods_RunnerTests.framework */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
@@ -42,20 +42,18 @@
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
- 018597106C8E38C2A20B56DC /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = ""; };
- 1454C98E0DB9BDD277830752 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; };
+ 06C27BF5D7B993BB5DCB8D21 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; };
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; };
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; };
- 164233455F6E52D976E7619C /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = ""; };
- 203DA535161F6F2E1631CA2F /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; };
331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; };
331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
+ 3421F167A26D263533D9C0F8 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; };
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; };
- 6DC3026E0A86AC8F0F5BE9D2 /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ 4ABA081B421BEA588642248C /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = ""; };
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; };
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; };
- 94F9D966F17CC87BA26C213A /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ 8367A59A9CDAA6556FC2822B /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; };
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; };
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; };
97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
@@ -63,8 +61,10 @@
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
- E367CC7226100F29F71405B1 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; };
- FAB89AD13AACCB9650BBE6EA /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = ""; };
+ 9BB58392A543FF4660B2490F /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = ""; };
+ D0BA15459E839D3553B26934 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ E2086F275166C6948CE70FC0 /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ F7B65A9BC4B475ABEC573986 /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = ""; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
@@ -72,15 +72,15 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 28D4EB9BC109C11A38856D7C /* Pods_Runner.framework in Frameworks */,
+ 31AC9F1F861163CE474DC0DF /* Pods_Runner.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- BFB82CA3C890A718124E1EDE /* Frameworks */ = {
+ F9E0A4607079935C37BF168F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 0BA3C72CFF7FB3D58116BBE0 /* Pods_RunnerTests.framework in Frameworks */,
+ C4EE9B5B592653F634344186 /* Pods_RunnerTests.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -95,15 +95,15 @@
path = RunnerTests;
sourceTree = "";
};
- 7A1ACBFB4AEFAC5081D802E1 /* Pods */ = {
+ 44BD8D06CB822F8C423FCD72 /* Pods */ = {
isa = PBXGroup;
children = (
- E367CC7226100F29F71405B1 /* Pods-Runner.debug.xcconfig */,
- 1454C98E0DB9BDD277830752 /* Pods-Runner.release.xcconfig */,
- 203DA535161F6F2E1631CA2F /* Pods-Runner.profile.xcconfig */,
- FAB89AD13AACCB9650BBE6EA /* Pods-RunnerTests.debug.xcconfig */,
- 018597106C8E38C2A20B56DC /* Pods-RunnerTests.release.xcconfig */,
- 164233455F6E52D976E7619C /* Pods-RunnerTests.profile.xcconfig */,
+ 3421F167A26D263533D9C0F8 /* Pods-Runner.debug.xcconfig */,
+ 8367A59A9CDAA6556FC2822B /* Pods-Runner.release.xcconfig */,
+ 06C27BF5D7B993BB5DCB8D21 /* Pods-Runner.profile.xcconfig */,
+ F7B65A9BC4B475ABEC573986 /* Pods-RunnerTests.debug.xcconfig */,
+ 4ABA081B421BEA588642248C /* Pods-RunnerTests.release.xcconfig */,
+ 9BB58392A543FF4660B2490F /* Pods-RunnerTests.profile.xcconfig */,
);
name = Pods;
path = Pods;
@@ -127,8 +127,8 @@
97C146F01CF9000F007C117D /* Runner */,
97C146EF1CF9000F007C117D /* Products */,
331C8082294A63A400263BE5 /* RunnerTests */,
- 7A1ACBFB4AEFAC5081D802E1 /* Pods */,
- AD091A7825928A7EC8BC6AD6 /* Frameworks */,
+ 44BD8D06CB822F8C423FCD72 /* Pods */,
+ D054066A4956E2C378EF4A32 /* Frameworks */,
);
sourceTree = "";
};
@@ -156,11 +156,11 @@
path = Runner;
sourceTree = "";
};
- AD091A7825928A7EC8BC6AD6 /* Frameworks */ = {
+ D054066A4956E2C378EF4A32 /* Frameworks */ = {
isa = PBXGroup;
children = (
- 94F9D966F17CC87BA26C213A /* Pods_Runner.framework */,
- 6DC3026E0A86AC8F0F5BE9D2 /* Pods_RunnerTests.framework */,
+ D0BA15459E839D3553B26934 /* Pods_Runner.framework */,
+ E2086F275166C6948CE70FC0 /* Pods_RunnerTests.framework */,
);
name = Frameworks;
sourceTree = "";
@@ -172,10 +172,10 @@
isa = PBXNativeTarget;
buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
buildPhases = (
- D8787C4471D00A25C41EA2CB /* [CP] Check Pods Manifest.lock */,
+ 001D1E85333DF9609D34BC08 /* [CP] Check Pods Manifest.lock */,
331C807D294A63A400263BE5 /* Sources */,
331C807F294A63A400263BE5 /* Resources */,
- BFB82CA3C890A718124E1EDE /* Frameworks */,
+ F9E0A4607079935C37BF168F /* Frameworks */,
);
buildRules = (
);
@@ -191,14 +191,14 @@
isa = PBXNativeTarget;
buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
buildPhases = (
- 62E6FB6D8F5E3A7C56D8737D /* [CP] Check Pods Manifest.lock */,
+ 1975AD24A5DD7DE3F4DE1B61 /* [CP] Check Pods Manifest.lock */,
9740EEB61CF901F6004384FC /* Run Script */,
97C146EA1CF9000F007C117D /* Sources */,
97C146EB1CF9000F007C117D /* Frameworks */,
97C146EC1CF9000F007C117D /* Resources */,
9705A1C41CF9048500538489 /* Embed Frameworks */,
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
- 72DCD364ECC5EFBE76A41B99 /* [CP] Embed Pods Frameworks */,
+ 26E7569DC25C33E17720D218 /* [CP] Embed Pods Frameworks */,
);
buildRules = (
);
@@ -270,23 +270,29 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
- 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
+ 001D1E85333DF9609D34BC08 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
- alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
+ inputFileListPaths = (
+ );
inputPaths = (
- "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
+ "${PODS_ROOT}/Manifest.lock",
+ );
+ name = "[CP] Check Pods Manifest.lock";
+ outputFileListPaths = (
);
- name = "Thin Binary";
outputPaths = (
+ "$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
+ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
+ showEnvVarsInLog = 0;
};
- 62E6FB6D8F5E3A7C56D8737D /* [CP] Check Pods Manifest.lock */ = {
+ 1975AD24A5DD7DE3F4DE1B61 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -308,7 +314,7 @@
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
- 72DCD364ECC5EFBE76A41B99 /* [CP] Embed Pods Frameworks */ = {
+ 26E7569DC25C33E17720D218 /* [CP] Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -325,42 +331,36 @@
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
- 9740EEB61CF901F6004384FC /* Run Script */ = {
+ 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
isa = PBXShellScriptBuildPhase;
alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
+ "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
);
- name = "Run Script";
+ name = "Thin Binary";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
+ shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
};
- D8787C4471D00A25C41EA2CB /* [CP] Check Pods Manifest.lock */ = {
+ 9740EEB61CF901F6004384FC /* Run Script */ = {
isa = PBXShellScriptBuildPhase;
+ alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
- inputFileListPaths = (
- );
inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputFileListPaths = (
);
+ name = "Run Script";
outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
- showEnvVarsInLog = 0;
+ shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
};
/* End PBXShellScriptBuildPhase section */
@@ -487,7 +487,7 @@
};
331C8088294A63A400263BE5 /* Debug */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = FAB89AD13AACCB9650BBE6EA /* Pods-RunnerTests.debug.xcconfig */;
+ baseConfigurationReference = F7B65A9BC4B475ABEC573986 /* Pods-RunnerTests.debug.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CODE_SIGN_STYLE = Automatic;
@@ -505,7 +505,7 @@
};
331C8089294A63A400263BE5 /* Release */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 018597106C8E38C2A20B56DC /* Pods-RunnerTests.release.xcconfig */;
+ baseConfigurationReference = 4ABA081B421BEA588642248C /* Pods-RunnerTests.release.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CODE_SIGN_STYLE = Automatic;
@@ -521,7 +521,7 @@
};
331C808A294A63A400263BE5 /* Profile */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 164233455F6E52D976E7619C /* Pods-RunnerTests.profile.xcconfig */;
+ baseConfigurationReference = 9BB58392A543FF4660B2490F /* Pods-RunnerTests.profile.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CODE_SIGN_STYLE = Automatic;
diff --git a/boring_to_beautiful/step_02/lib/src/shared/extensions.dart b/boring_to_beautiful/step_02/lib/src/shared/extensions.dart
index 0d51f11a24..fe65add57c 100644
--- a/boring_to_beautiful/step_02/lib/src/shared/extensions.dart
+++ b/boring_to_beautiful/step_02/lib/src/shared/extensions.dart
@@ -3,10 +3,11 @@
// found in the LICENSE file.
import 'package:flutter/material.dart';
+import 'package:google_fonts/google_fonts.dart';
extension TypographyUtils on BuildContext {
ThemeData get theme => Theme.of(this);
- TextTheme get textTheme => theme.textTheme;
+ TextTheme get textTheme => GoogleFonts.montserratTextTheme(theme.textTheme);
ColorScheme get colors => theme.colorScheme;
TextStyle? get displayLarge =>
textTheme.displayLarge?.copyWith(color: colors.onSurface);
diff --git a/boring_to_beautiful/step_02/macos/Flutter/GeneratedPluginRegistrant.swift b/boring_to_beautiful/step_02/macos/Flutter/GeneratedPluginRegistrant.swift
index e79d7f5452..b79b17e327 100644
--- a/boring_to_beautiful/step_02/macos/Flutter/GeneratedPluginRegistrant.swift
+++ b/boring_to_beautiful/step_02/macos/Flutter/GeneratedPluginRegistrant.swift
@@ -7,10 +7,12 @@ import Foundation
import desktop_window
import dynamic_color
+import path_provider_foundation
import url_launcher_macos
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
DesktopWindowPlugin.register(with: registry.registrar(forPlugin: "DesktopWindowPlugin"))
DynamicColorPlugin.register(with: registry.registrar(forPlugin: "DynamicColorPlugin"))
+ PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin"))
}
diff --git a/boring_to_beautiful/step_02/macos/Runner.xcodeproj/project.pbxproj b/boring_to_beautiful/step_02/macos/Runner.xcodeproj/project.pbxproj
index 6ae862c37d..79fced16c3 100644
--- a/boring_to_beautiful/step_02/macos/Runner.xcodeproj/project.pbxproj
+++ b/boring_to_beautiful/step_02/macos/Runner.xcodeproj/project.pbxproj
@@ -21,14 +21,14 @@
/* End PBXAggregateTarget section */
/* Begin PBXBuildFile section */
+ 120C1A7E7D320A31C1211A4A /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AA208D76E7C609C5BAC5DE1C /* Pods_RunnerTests.framework */; };
331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C80D7294CF71000263BE5 /* RunnerTests.swift */; };
335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */; };
33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC10F02044A3C60003C045 /* AppDelegate.swift */; };
33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; };
33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; };
33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; };
- 6A705DC52900C471DF6E1EC6 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C4369DFC5152AD3CC9336DE1 /* Pods_Runner.framework */; };
- 9AEA2C669381F3905C501B66 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A2ED1AFEDE3E0824294F5C6C /* Pods_RunnerTests.framework */; };
+ E344FE031826102CEDE46647 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E265E576032EFCCB6AB10F89 /* Pods_Runner.framework */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
@@ -62,7 +62,7 @@
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
- 049E4603B0A09E05087E56FA /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = ""; };
+ 2BCC07C46EB4E01CE044DBB6 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; };
331C80D5294CF71000263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
331C80D7294CF71000263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; };
333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = ""; };
@@ -79,15 +79,15 @@
33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = ""; };
33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = ""; };
33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = ""; };
- 54CECCDD830654297CBE27CA /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = ""; };
+ 3E5DC3FB470EEF77149E71DD /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; };
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = ""; };
+ 93864140E5DDD8350C71D815 /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = ""; };
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = ""; };
- 9FFE8F2CDA409CA0E1B27D98 /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = ""; };
- A2ED1AFEDE3E0824294F5C6C /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- C4369DFC5152AD3CC9336DE1 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- CE866162E3EE650EB52F3385 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; };
- DF7AD973C56F21946082FE37 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; };
- E9D755A13E508067E98F3444 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; };
+ 9B293DEC88BD59786AD94EBD /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; };
+ AA208D76E7C609C5BAC5DE1C /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ E265E576032EFCCB6AB10F89 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ EEFA0ABEA58A1E38E7AD7041 /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = ""; };
+ FDBDA46A6FE6381EE95E5A7A /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = ""; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
@@ -95,7 +95,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 9AEA2C669381F3905C501B66 /* Pods_RunnerTests.framework in Frameworks */,
+ 120C1A7E7D320A31C1211A4A /* Pods_RunnerTests.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -103,7 +103,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 6A705DC52900C471DF6E1EC6 /* Pods_Runner.framework in Frameworks */,
+ E344FE031826102CEDE46647 /* Pods_Runner.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -137,7 +137,7 @@
331C80D6294CF71000263BE5 /* RunnerTests */,
33CC10EE2044A3C60003C045 /* Products */,
D73912EC22F37F3D000D13A0 /* Frameworks */,
- D3381829CD41C2D96B6F2B3E /* Pods */,
+ 6CDFAAD29A585E1E7DFB128C /* Pods */,
);
sourceTree = "";
};
@@ -185,15 +185,15 @@
path = Runner;
sourceTree = "";
};
- D3381829CD41C2D96B6F2B3E /* Pods */ = {
+ 6CDFAAD29A585E1E7DFB128C /* Pods */ = {
isa = PBXGroup;
children = (
- E9D755A13E508067E98F3444 /* Pods-Runner.debug.xcconfig */,
- CE866162E3EE650EB52F3385 /* Pods-Runner.release.xcconfig */,
- DF7AD973C56F21946082FE37 /* Pods-Runner.profile.xcconfig */,
- 9FFE8F2CDA409CA0E1B27D98 /* Pods-RunnerTests.debug.xcconfig */,
- 049E4603B0A09E05087E56FA /* Pods-RunnerTests.release.xcconfig */,
- 54CECCDD830654297CBE27CA /* Pods-RunnerTests.profile.xcconfig */,
+ 3E5DC3FB470EEF77149E71DD /* Pods-Runner.debug.xcconfig */,
+ 2BCC07C46EB4E01CE044DBB6 /* Pods-Runner.release.xcconfig */,
+ 9B293DEC88BD59786AD94EBD /* Pods-Runner.profile.xcconfig */,
+ 93864140E5DDD8350C71D815 /* Pods-RunnerTests.debug.xcconfig */,
+ FDBDA46A6FE6381EE95E5A7A /* Pods-RunnerTests.release.xcconfig */,
+ EEFA0ABEA58A1E38E7AD7041 /* Pods-RunnerTests.profile.xcconfig */,
);
name = Pods;
path = Pods;
@@ -202,8 +202,8 @@
D73912EC22F37F3D000D13A0 /* Frameworks */ = {
isa = PBXGroup;
children = (
- C4369DFC5152AD3CC9336DE1 /* Pods_Runner.framework */,
- A2ED1AFEDE3E0824294F5C6C /* Pods_RunnerTests.framework */,
+ E265E576032EFCCB6AB10F89 /* Pods_Runner.framework */,
+ AA208D76E7C609C5BAC5DE1C /* Pods_RunnerTests.framework */,
);
name = Frameworks;
sourceTree = "";
@@ -215,7 +215,7 @@
isa = PBXNativeTarget;
buildConfigurationList = 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
buildPhases = (
- C59A11FAACC96E6D468156D2 /* [CP] Check Pods Manifest.lock */,
+ 36CFF57A21336FA90DED8C50 /* [CP] Check Pods Manifest.lock */,
331C80D1294CF70F00263BE5 /* Sources */,
331C80D2294CF70F00263BE5 /* Frameworks */,
331C80D3294CF70F00263BE5 /* Resources */,
@@ -234,13 +234,13 @@
isa = PBXNativeTarget;
buildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */;
buildPhases = (
- 33528B7408CACCE07D6DAD0F /* [CP] Check Pods Manifest.lock */,
+ 41EDDA96C09EE65F003D69E0 /* [CP] Check Pods Manifest.lock */,
33CC10E92044A3C60003C045 /* Sources */,
33CC10EA2044A3C60003C045 /* Frameworks */,
33CC10EB2044A3C60003C045 /* Resources */,
33CC110E2044A8840003C045 /* Bundle Framework */,
3399D490228B24CF009A79C7 /* ShellScript */,
- C6A4842BF1A9A85A617B12E2 /* [CP] Embed Pods Frameworks */,
+ 0F169C1C0F5EE8E3D274E72F /* [CP] Embed Pods Frameworks */,
);
buildRules = (
);
@@ -323,26 +323,21 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
- 33528B7408CACCE07D6DAD0F /* [CP] Check Pods Manifest.lock */ = {
+ 0F169C1C0F5EE8E3D274E72F /* [CP] Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
+ "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
);
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
+ name = "[CP] Embed Pods Frameworks";
outputFileListPaths = (
- );
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
+ "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
3399D490228B24CF009A79C7 /* ShellScript */ = {
@@ -383,7 +378,7 @@
shellPath = /bin/sh;
shellScript = "\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh && touch Flutter/ephemeral/tripwire";
};
- C59A11FAACC96E6D468156D2 /* [CP] Check Pods Manifest.lock */ = {
+ 36CFF57A21336FA90DED8C50 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -405,21 +400,26 @@
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
- C6A4842BF1A9A85A617B12E2 /* [CP] Embed Pods Frameworks */ = {
+ 41EDDA96C09EE65F003D69E0 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
);
- name = "[CP] Embed Pods Frameworks";
+ inputPaths = (
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
+ "${PODS_ROOT}/Manifest.lock",
+ );
+ name = "[CP] Check Pods Manifest.lock";
outputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
+ );
+ outputPaths = (
+ "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
+ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
/* End PBXShellScriptBuildPhase section */
@@ -473,7 +473,7 @@
/* Begin XCBuildConfiguration section */
331C80DB294CF71000263BE5 /* Debug */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 9FFE8F2CDA409CA0E1B27D98 /* Pods-RunnerTests.debug.xcconfig */;
+ baseConfigurationReference = 93864140E5DDD8350C71D815 /* Pods-RunnerTests.debug.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CURRENT_PROJECT_VERSION = 1;
@@ -488,7 +488,7 @@
};
331C80DC294CF71000263BE5 /* Release */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 049E4603B0A09E05087E56FA /* Pods-RunnerTests.release.xcconfig */;
+ baseConfigurationReference = FDBDA46A6FE6381EE95E5A7A /* Pods-RunnerTests.release.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CURRENT_PROJECT_VERSION = 1;
@@ -503,7 +503,7 @@
};
331C80DD294CF71000263BE5 /* Profile */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 54CECCDD830654297CBE27CA /* Pods-RunnerTests.profile.xcconfig */;
+ baseConfigurationReference = EEFA0ABEA58A1E38E7AD7041 /* Pods-RunnerTests.profile.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CURRENT_PROJECT_VERSION = 1;
diff --git a/boring_to_beautiful/step_02/macos/Runner/DebugProfile.entitlements b/boring_to_beautiful/step_02/macos/Runner/DebugProfile.entitlements
index 3ba6c1266f..08c3ab17cc 100644
--- a/boring_to_beautiful/step_02/macos/Runner/DebugProfile.entitlements
+++ b/boring_to_beautiful/step_02/macos/Runner/DebugProfile.entitlements
@@ -6,9 +6,9 @@
com.apple.security.cs.allow-jit
- com.apple.security.network.client
-
com.apple.security.network.server
+ com.apple.security.network.client
+
diff --git a/boring_to_beautiful/step_02/macos/Runner/Release.entitlements b/boring_to_beautiful/step_02/macos/Runner/Release.entitlements
index 7a2230dc33..ee95ab7e58 100644
--- a/boring_to_beautiful/step_02/macos/Runner/Release.entitlements
+++ b/boring_to_beautiful/step_02/macos/Runner/Release.entitlements
@@ -6,7 +6,5 @@
com.apple.security.network.client
- com.apple.security.network.server
-
diff --git a/boring_to_beautiful/step_02/pubspec.yaml b/boring_to_beautiful/step_02/pubspec.yaml
index f5f445fc3a..817f7d00c0 100644
--- a/boring_to_beautiful/step_02/pubspec.yaml
+++ b/boring_to_beautiful/step_02/pubspec.yaml
@@ -17,10 +17,11 @@ dependencies:
english_words: ^4.0.0
flutter_bloc: ^9.1.1
freezed_annotation: ^3.0.0
- go_router: ^15.1.2
+ go_router: ^15.1.3
material_color_utilities: any
universal_platform: ^1.1.0
url_launcher: ^6.3.1
+ google_fonts: ^6.2.1
dev_dependencies:
flutter_test:
diff --git a/boring_to_beautiful/step_03/ios/Runner.xcodeproj/project.pbxproj b/boring_to_beautiful/step_03/ios/Runner.xcodeproj/project.pbxproj
index ebb1244e8b..c30322fdf6 100644
--- a/boring_to_beautiful/step_03/ios/Runner.xcodeproj/project.pbxproj
+++ b/boring_to_beautiful/step_03/ios/Runner.xcodeproj/project.pbxproj
@@ -7,15 +7,15 @@
objects = {
/* Begin PBXBuildFile section */
- 0BA3C72CFF7FB3D58116BBE0 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6DC3026E0A86AC8F0F5BE9D2 /* Pods_RunnerTests.framework */; };
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
- 28D4EB9BC109C11A38856D7C /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 94F9D966F17CC87BA26C213A /* Pods_Runner.framework */; };
+ 31AC9F1F861163CE474DC0DF /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D0BA15459E839D3553B26934 /* Pods_Runner.framework */; };
331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
+ C4EE9B5B592653F634344186 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E2086F275166C6948CE70FC0 /* Pods_RunnerTests.framework */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
@@ -42,20 +42,18 @@
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
- 018597106C8E38C2A20B56DC /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = ""; };
- 1454C98E0DB9BDD277830752 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; };
+ 06C27BF5D7B993BB5DCB8D21 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; };
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; };
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; };
- 164233455F6E52D976E7619C /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = ""; };
- 203DA535161F6F2E1631CA2F /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; };
331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; };
331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
+ 3421F167A26D263533D9C0F8 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; };
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; };
- 6DC3026E0A86AC8F0F5BE9D2 /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ 4ABA081B421BEA588642248C /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = ""; };
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; };
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; };
- 94F9D966F17CC87BA26C213A /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ 8367A59A9CDAA6556FC2822B /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; };
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; };
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; };
97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
@@ -63,8 +61,10 @@
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
- E367CC7226100F29F71405B1 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; };
- FAB89AD13AACCB9650BBE6EA /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = ""; };
+ 9BB58392A543FF4660B2490F /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = ""; };
+ D0BA15459E839D3553B26934 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ E2086F275166C6948CE70FC0 /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ F7B65A9BC4B475ABEC573986 /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = ""; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
@@ -72,15 +72,15 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 28D4EB9BC109C11A38856D7C /* Pods_Runner.framework in Frameworks */,
+ 31AC9F1F861163CE474DC0DF /* Pods_Runner.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- BFB82CA3C890A718124E1EDE /* Frameworks */ = {
+ F9E0A4607079935C37BF168F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 0BA3C72CFF7FB3D58116BBE0 /* Pods_RunnerTests.framework in Frameworks */,
+ C4EE9B5B592653F634344186 /* Pods_RunnerTests.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -95,15 +95,15 @@
path = RunnerTests;
sourceTree = "";
};
- 7A1ACBFB4AEFAC5081D802E1 /* Pods */ = {
+ 44BD8D06CB822F8C423FCD72 /* Pods */ = {
isa = PBXGroup;
children = (
- E367CC7226100F29F71405B1 /* Pods-Runner.debug.xcconfig */,
- 1454C98E0DB9BDD277830752 /* Pods-Runner.release.xcconfig */,
- 203DA535161F6F2E1631CA2F /* Pods-Runner.profile.xcconfig */,
- FAB89AD13AACCB9650BBE6EA /* Pods-RunnerTests.debug.xcconfig */,
- 018597106C8E38C2A20B56DC /* Pods-RunnerTests.release.xcconfig */,
- 164233455F6E52D976E7619C /* Pods-RunnerTests.profile.xcconfig */,
+ 3421F167A26D263533D9C0F8 /* Pods-Runner.debug.xcconfig */,
+ 8367A59A9CDAA6556FC2822B /* Pods-Runner.release.xcconfig */,
+ 06C27BF5D7B993BB5DCB8D21 /* Pods-Runner.profile.xcconfig */,
+ F7B65A9BC4B475ABEC573986 /* Pods-RunnerTests.debug.xcconfig */,
+ 4ABA081B421BEA588642248C /* Pods-RunnerTests.release.xcconfig */,
+ 9BB58392A543FF4660B2490F /* Pods-RunnerTests.profile.xcconfig */,
);
name = Pods;
path = Pods;
@@ -127,8 +127,8 @@
97C146F01CF9000F007C117D /* Runner */,
97C146EF1CF9000F007C117D /* Products */,
331C8082294A63A400263BE5 /* RunnerTests */,
- 7A1ACBFB4AEFAC5081D802E1 /* Pods */,
- AD091A7825928A7EC8BC6AD6 /* Frameworks */,
+ 44BD8D06CB822F8C423FCD72 /* Pods */,
+ D054066A4956E2C378EF4A32 /* Frameworks */,
);
sourceTree = "";
};
@@ -156,11 +156,11 @@
path = Runner;
sourceTree = "";
};
- AD091A7825928A7EC8BC6AD6 /* Frameworks */ = {
+ D054066A4956E2C378EF4A32 /* Frameworks */ = {
isa = PBXGroup;
children = (
- 94F9D966F17CC87BA26C213A /* Pods_Runner.framework */,
- 6DC3026E0A86AC8F0F5BE9D2 /* Pods_RunnerTests.framework */,
+ D0BA15459E839D3553B26934 /* Pods_Runner.framework */,
+ E2086F275166C6948CE70FC0 /* Pods_RunnerTests.framework */,
);
name = Frameworks;
sourceTree = "";
@@ -172,10 +172,10 @@
isa = PBXNativeTarget;
buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
buildPhases = (
- D8787C4471D00A25C41EA2CB /* [CP] Check Pods Manifest.lock */,
+ 001D1E85333DF9609D34BC08 /* [CP] Check Pods Manifest.lock */,
331C807D294A63A400263BE5 /* Sources */,
331C807F294A63A400263BE5 /* Resources */,
- BFB82CA3C890A718124E1EDE /* Frameworks */,
+ F9E0A4607079935C37BF168F /* Frameworks */,
);
buildRules = (
);
@@ -191,14 +191,14 @@
isa = PBXNativeTarget;
buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
buildPhases = (
- 62E6FB6D8F5E3A7C56D8737D /* [CP] Check Pods Manifest.lock */,
+ 1975AD24A5DD7DE3F4DE1B61 /* [CP] Check Pods Manifest.lock */,
9740EEB61CF901F6004384FC /* Run Script */,
97C146EA1CF9000F007C117D /* Sources */,
97C146EB1CF9000F007C117D /* Frameworks */,
97C146EC1CF9000F007C117D /* Resources */,
9705A1C41CF9048500538489 /* Embed Frameworks */,
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
- 72DCD364ECC5EFBE76A41B99 /* [CP] Embed Pods Frameworks */,
+ 26E7569DC25C33E17720D218 /* [CP] Embed Pods Frameworks */,
);
buildRules = (
);
@@ -270,23 +270,29 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
- 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
+ 001D1E85333DF9609D34BC08 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
- alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
+ inputFileListPaths = (
+ );
inputPaths = (
- "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
+ "${PODS_ROOT}/Manifest.lock",
+ );
+ name = "[CP] Check Pods Manifest.lock";
+ outputFileListPaths = (
);
- name = "Thin Binary";
outputPaths = (
+ "$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
+ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
+ showEnvVarsInLog = 0;
};
- 62E6FB6D8F5E3A7C56D8737D /* [CP] Check Pods Manifest.lock */ = {
+ 1975AD24A5DD7DE3F4DE1B61 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -308,7 +314,7 @@
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
- 72DCD364ECC5EFBE76A41B99 /* [CP] Embed Pods Frameworks */ = {
+ 26E7569DC25C33E17720D218 /* [CP] Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -325,42 +331,36 @@
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
- 9740EEB61CF901F6004384FC /* Run Script */ = {
+ 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
isa = PBXShellScriptBuildPhase;
alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
+ "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
);
- name = "Run Script";
+ name = "Thin Binary";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
+ shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
};
- D8787C4471D00A25C41EA2CB /* [CP] Check Pods Manifest.lock */ = {
+ 9740EEB61CF901F6004384FC /* Run Script */ = {
isa = PBXShellScriptBuildPhase;
+ alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
- inputFileListPaths = (
- );
inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputFileListPaths = (
);
+ name = "Run Script";
outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
- showEnvVarsInLog = 0;
+ shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
};
/* End PBXShellScriptBuildPhase section */
@@ -487,7 +487,7 @@
};
331C8088294A63A400263BE5 /* Debug */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = FAB89AD13AACCB9650BBE6EA /* Pods-RunnerTests.debug.xcconfig */;
+ baseConfigurationReference = F7B65A9BC4B475ABEC573986 /* Pods-RunnerTests.debug.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CODE_SIGN_STYLE = Automatic;
@@ -505,7 +505,7 @@
};
331C8089294A63A400263BE5 /* Release */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 018597106C8E38C2A20B56DC /* Pods-RunnerTests.release.xcconfig */;
+ baseConfigurationReference = 4ABA081B421BEA588642248C /* Pods-RunnerTests.release.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CODE_SIGN_STYLE = Automatic;
@@ -521,7 +521,7 @@
};
331C808A294A63A400263BE5 /* Profile */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 164233455F6E52D976E7619C /* Pods-RunnerTests.profile.xcconfig */;
+ baseConfigurationReference = 9BB58392A543FF4660B2490F /* Pods-RunnerTests.profile.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CODE_SIGN_STYLE = Automatic;
diff --git a/boring_to_beautiful/step_03/lib/src/shared/app.dart b/boring_to_beautiful/step_03/lib/src/shared/app.dart
index 85dc86385b..87f9d9bfe0 100644
--- a/boring_to_beautiful/step_03/lib/src/shared/app.dart
+++ b/boring_to_beautiful/step_03/lib/src/shared/app.dart
@@ -39,9 +39,13 @@ class _MyAppState extends State {
child: ValueListenableBuilder(
valueListenable: settings,
builder: (context, value, _) {
+ final theme = ThemeProvider.of(context);
return MaterialApp.router(
debugShowCheckedModeBanner: false,
title: 'Flutter Demo',
+ theme: theme.light(settings.value.sourceColor),
+ darkTheme: theme.dark(settings.value.sourceColor),
+ themeMode: theme.themeMode(),
routeInformationParser: appRouter.routeInformationParser,
routeInformationProvider: appRouter.routeInformationProvider,
routerDelegate: appRouter.routerDelegate,
diff --git a/boring_to_beautiful/step_03/lib/src/shared/views/outlined_card.dart b/boring_to_beautiful/step_03/lib/src/shared/views/outlined_card.dart
index 83e9157aa6..5225518d9f 100644
--- a/boring_to_beautiful/step_03/lib/src/shared/views/outlined_card.dart
+++ b/boring_to_beautiful/step_03/lib/src/shared/views/outlined_card.dart
@@ -21,7 +21,15 @@ class _OutlinedCardState extends State {
cursor: widget.clickable
? SystemMouseCursors.click
: SystemMouseCursors.basic,
- child: Container(child: widget.child),
+ child: Container(
+ decoration: BoxDecoration(
+ border: Border.all(
+ color: Theme.of(context).colorScheme.outline,
+ width: 1,
+ ),
+ ),
+ child: widget.child,
+ ),
);
}
}
diff --git a/boring_to_beautiful/step_03/macos/Runner.xcodeproj/project.pbxproj b/boring_to_beautiful/step_03/macos/Runner.xcodeproj/project.pbxproj
index 6ae862c37d..79fced16c3 100644
--- a/boring_to_beautiful/step_03/macos/Runner.xcodeproj/project.pbxproj
+++ b/boring_to_beautiful/step_03/macos/Runner.xcodeproj/project.pbxproj
@@ -21,14 +21,14 @@
/* End PBXAggregateTarget section */
/* Begin PBXBuildFile section */
+ 120C1A7E7D320A31C1211A4A /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AA208D76E7C609C5BAC5DE1C /* Pods_RunnerTests.framework */; };
331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C80D7294CF71000263BE5 /* RunnerTests.swift */; };
335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */; };
33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC10F02044A3C60003C045 /* AppDelegate.swift */; };
33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; };
33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; };
33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; };
- 6A705DC52900C471DF6E1EC6 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C4369DFC5152AD3CC9336DE1 /* Pods_Runner.framework */; };
- 9AEA2C669381F3905C501B66 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A2ED1AFEDE3E0824294F5C6C /* Pods_RunnerTests.framework */; };
+ E344FE031826102CEDE46647 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E265E576032EFCCB6AB10F89 /* Pods_Runner.framework */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
@@ -62,7 +62,7 @@
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
- 049E4603B0A09E05087E56FA /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = ""; };
+ 2BCC07C46EB4E01CE044DBB6 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; };
331C80D5294CF71000263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
331C80D7294CF71000263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; };
333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = ""; };
@@ -79,15 +79,15 @@
33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = ""; };
33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = ""; };
33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = ""; };
- 54CECCDD830654297CBE27CA /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = ""; };
+ 3E5DC3FB470EEF77149E71DD /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; };
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = ""; };
+ 93864140E5DDD8350C71D815 /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = ""; };
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = ""; };
- 9FFE8F2CDA409CA0E1B27D98 /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = ""; };
- A2ED1AFEDE3E0824294F5C6C /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- C4369DFC5152AD3CC9336DE1 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- CE866162E3EE650EB52F3385 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; };
- DF7AD973C56F21946082FE37 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; };
- E9D755A13E508067E98F3444 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; };
+ 9B293DEC88BD59786AD94EBD /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; };
+ AA208D76E7C609C5BAC5DE1C /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ E265E576032EFCCB6AB10F89 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ EEFA0ABEA58A1E38E7AD7041 /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = ""; };
+ FDBDA46A6FE6381EE95E5A7A /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = ""; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
@@ -95,7 +95,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 9AEA2C669381F3905C501B66 /* Pods_RunnerTests.framework in Frameworks */,
+ 120C1A7E7D320A31C1211A4A /* Pods_RunnerTests.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -103,7 +103,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 6A705DC52900C471DF6E1EC6 /* Pods_Runner.framework in Frameworks */,
+ E344FE031826102CEDE46647 /* Pods_Runner.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -137,7 +137,7 @@
331C80D6294CF71000263BE5 /* RunnerTests */,
33CC10EE2044A3C60003C045 /* Products */,
D73912EC22F37F3D000D13A0 /* Frameworks */,
- D3381829CD41C2D96B6F2B3E /* Pods */,
+ 6CDFAAD29A585E1E7DFB128C /* Pods */,
);
sourceTree = "";
};
@@ -185,15 +185,15 @@
path = Runner;
sourceTree = "";
};
- D3381829CD41C2D96B6F2B3E /* Pods */ = {
+ 6CDFAAD29A585E1E7DFB128C /* Pods */ = {
isa = PBXGroup;
children = (
- E9D755A13E508067E98F3444 /* Pods-Runner.debug.xcconfig */,
- CE866162E3EE650EB52F3385 /* Pods-Runner.release.xcconfig */,
- DF7AD973C56F21946082FE37 /* Pods-Runner.profile.xcconfig */,
- 9FFE8F2CDA409CA0E1B27D98 /* Pods-RunnerTests.debug.xcconfig */,
- 049E4603B0A09E05087E56FA /* Pods-RunnerTests.release.xcconfig */,
- 54CECCDD830654297CBE27CA /* Pods-RunnerTests.profile.xcconfig */,
+ 3E5DC3FB470EEF77149E71DD /* Pods-Runner.debug.xcconfig */,
+ 2BCC07C46EB4E01CE044DBB6 /* Pods-Runner.release.xcconfig */,
+ 9B293DEC88BD59786AD94EBD /* Pods-Runner.profile.xcconfig */,
+ 93864140E5DDD8350C71D815 /* Pods-RunnerTests.debug.xcconfig */,
+ FDBDA46A6FE6381EE95E5A7A /* Pods-RunnerTests.release.xcconfig */,
+ EEFA0ABEA58A1E38E7AD7041 /* Pods-RunnerTests.profile.xcconfig */,
);
name = Pods;
path = Pods;
@@ -202,8 +202,8 @@
D73912EC22F37F3D000D13A0 /* Frameworks */ = {
isa = PBXGroup;
children = (
- C4369DFC5152AD3CC9336DE1 /* Pods_Runner.framework */,
- A2ED1AFEDE3E0824294F5C6C /* Pods_RunnerTests.framework */,
+ E265E576032EFCCB6AB10F89 /* Pods_Runner.framework */,
+ AA208D76E7C609C5BAC5DE1C /* Pods_RunnerTests.framework */,
);
name = Frameworks;
sourceTree = "";
@@ -215,7 +215,7 @@
isa = PBXNativeTarget;
buildConfigurationList = 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
buildPhases = (
- C59A11FAACC96E6D468156D2 /* [CP] Check Pods Manifest.lock */,
+ 36CFF57A21336FA90DED8C50 /* [CP] Check Pods Manifest.lock */,
331C80D1294CF70F00263BE5 /* Sources */,
331C80D2294CF70F00263BE5 /* Frameworks */,
331C80D3294CF70F00263BE5 /* Resources */,
@@ -234,13 +234,13 @@
isa = PBXNativeTarget;
buildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */;
buildPhases = (
- 33528B7408CACCE07D6DAD0F /* [CP] Check Pods Manifest.lock */,
+ 41EDDA96C09EE65F003D69E0 /* [CP] Check Pods Manifest.lock */,
33CC10E92044A3C60003C045 /* Sources */,
33CC10EA2044A3C60003C045 /* Frameworks */,
33CC10EB2044A3C60003C045 /* Resources */,
33CC110E2044A8840003C045 /* Bundle Framework */,
3399D490228B24CF009A79C7 /* ShellScript */,
- C6A4842BF1A9A85A617B12E2 /* [CP] Embed Pods Frameworks */,
+ 0F169C1C0F5EE8E3D274E72F /* [CP] Embed Pods Frameworks */,
);
buildRules = (
);
@@ -323,26 +323,21 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
- 33528B7408CACCE07D6DAD0F /* [CP] Check Pods Manifest.lock */ = {
+ 0F169C1C0F5EE8E3D274E72F /* [CP] Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
+ "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
);
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
+ name = "[CP] Embed Pods Frameworks";
outputFileListPaths = (
- );
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
+ "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
3399D490228B24CF009A79C7 /* ShellScript */ = {
@@ -383,7 +378,7 @@
shellPath = /bin/sh;
shellScript = "\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh && touch Flutter/ephemeral/tripwire";
};
- C59A11FAACC96E6D468156D2 /* [CP] Check Pods Manifest.lock */ = {
+ 36CFF57A21336FA90DED8C50 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -405,21 +400,26 @@
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
- C6A4842BF1A9A85A617B12E2 /* [CP] Embed Pods Frameworks */ = {
+ 41EDDA96C09EE65F003D69E0 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
);
- name = "[CP] Embed Pods Frameworks";
+ inputPaths = (
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
+ "${PODS_ROOT}/Manifest.lock",
+ );
+ name = "[CP] Check Pods Manifest.lock";
outputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
+ );
+ outputPaths = (
+ "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
+ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
/* End PBXShellScriptBuildPhase section */
@@ -473,7 +473,7 @@
/* Begin XCBuildConfiguration section */
331C80DB294CF71000263BE5 /* Debug */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 9FFE8F2CDA409CA0E1B27D98 /* Pods-RunnerTests.debug.xcconfig */;
+ baseConfigurationReference = 93864140E5DDD8350C71D815 /* Pods-RunnerTests.debug.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CURRENT_PROJECT_VERSION = 1;
@@ -488,7 +488,7 @@
};
331C80DC294CF71000263BE5 /* Release */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 049E4603B0A09E05087E56FA /* Pods-RunnerTests.release.xcconfig */;
+ baseConfigurationReference = FDBDA46A6FE6381EE95E5A7A /* Pods-RunnerTests.release.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CURRENT_PROJECT_VERSION = 1;
@@ -503,7 +503,7 @@
};
331C80DD294CF71000263BE5 /* Profile */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 54CECCDD830654297CBE27CA /* Pods-RunnerTests.profile.xcconfig */;
+ baseConfigurationReference = EEFA0ABEA58A1E38E7AD7041 /* Pods-RunnerTests.profile.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CURRENT_PROJECT_VERSION = 1;
diff --git a/boring_to_beautiful/step_03/macos/Runner/DebugProfile.entitlements b/boring_to_beautiful/step_03/macos/Runner/DebugProfile.entitlements
index 3ba6c1266f..08c3ab17cc 100644
--- a/boring_to_beautiful/step_03/macos/Runner/DebugProfile.entitlements
+++ b/boring_to_beautiful/step_03/macos/Runner/DebugProfile.entitlements
@@ -6,9 +6,9 @@
com.apple.security.cs.allow-jit
- com.apple.security.network.client
-
com.apple.security.network.server
+ com.apple.security.network.client
+
diff --git a/boring_to_beautiful/step_03/macos/Runner/Release.entitlements b/boring_to_beautiful/step_03/macos/Runner/Release.entitlements
index 7a2230dc33..ee95ab7e58 100644
--- a/boring_to_beautiful/step_03/macos/Runner/Release.entitlements
+++ b/boring_to_beautiful/step_03/macos/Runner/Release.entitlements
@@ -6,7 +6,5 @@
com.apple.security.network.client
- com.apple.security.network.server
-
diff --git a/boring_to_beautiful/step_03/pubspec.yaml b/boring_to_beautiful/step_03/pubspec.yaml
index e6cd6dfab6..817f7d00c0 100644
--- a/boring_to_beautiful/step_03/pubspec.yaml
+++ b/boring_to_beautiful/step_03/pubspec.yaml
@@ -17,7 +17,7 @@ dependencies:
english_words: ^4.0.0
flutter_bloc: ^9.1.1
freezed_annotation: ^3.0.0
- go_router: ^15.1.2
+ go_router: ^15.1.3
material_color_utilities: any
universal_platform: ^1.1.0
url_launcher: ^6.3.1
diff --git a/boring_to_beautiful/step_04/ios/Runner.xcodeproj/project.pbxproj b/boring_to_beautiful/step_04/ios/Runner.xcodeproj/project.pbxproj
index ebb1244e8b..c30322fdf6 100644
--- a/boring_to_beautiful/step_04/ios/Runner.xcodeproj/project.pbxproj
+++ b/boring_to_beautiful/step_04/ios/Runner.xcodeproj/project.pbxproj
@@ -7,15 +7,15 @@
objects = {
/* Begin PBXBuildFile section */
- 0BA3C72CFF7FB3D58116BBE0 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6DC3026E0A86AC8F0F5BE9D2 /* Pods_RunnerTests.framework */; };
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
- 28D4EB9BC109C11A38856D7C /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 94F9D966F17CC87BA26C213A /* Pods_Runner.framework */; };
+ 31AC9F1F861163CE474DC0DF /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D0BA15459E839D3553B26934 /* Pods_Runner.framework */; };
331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
+ C4EE9B5B592653F634344186 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E2086F275166C6948CE70FC0 /* Pods_RunnerTests.framework */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
@@ -42,20 +42,18 @@
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
- 018597106C8E38C2A20B56DC /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = ""; };
- 1454C98E0DB9BDD277830752 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; };
+ 06C27BF5D7B993BB5DCB8D21 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; };
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; };
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; };
- 164233455F6E52D976E7619C /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = ""; };
- 203DA535161F6F2E1631CA2F /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; };
331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; };
331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
+ 3421F167A26D263533D9C0F8 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; };
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; };
- 6DC3026E0A86AC8F0F5BE9D2 /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ 4ABA081B421BEA588642248C /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = ""; };
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; };
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; };
- 94F9D966F17CC87BA26C213A /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ 8367A59A9CDAA6556FC2822B /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; };
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; };
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; };
97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
@@ -63,8 +61,10 @@
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
- E367CC7226100F29F71405B1 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; };
- FAB89AD13AACCB9650BBE6EA /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = ""; };
+ 9BB58392A543FF4660B2490F /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = ""; };
+ D0BA15459E839D3553B26934 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ E2086F275166C6948CE70FC0 /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ F7B65A9BC4B475ABEC573986 /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = ""; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
@@ -72,15 +72,15 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 28D4EB9BC109C11A38856D7C /* Pods_Runner.framework in Frameworks */,
+ 31AC9F1F861163CE474DC0DF /* Pods_Runner.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- BFB82CA3C890A718124E1EDE /* Frameworks */ = {
+ F9E0A4607079935C37BF168F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 0BA3C72CFF7FB3D58116BBE0 /* Pods_RunnerTests.framework in Frameworks */,
+ C4EE9B5B592653F634344186 /* Pods_RunnerTests.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -95,15 +95,15 @@
path = RunnerTests;
sourceTree = "";
};
- 7A1ACBFB4AEFAC5081D802E1 /* Pods */ = {
+ 44BD8D06CB822F8C423FCD72 /* Pods */ = {
isa = PBXGroup;
children = (
- E367CC7226100F29F71405B1 /* Pods-Runner.debug.xcconfig */,
- 1454C98E0DB9BDD277830752 /* Pods-Runner.release.xcconfig */,
- 203DA535161F6F2E1631CA2F /* Pods-Runner.profile.xcconfig */,
- FAB89AD13AACCB9650BBE6EA /* Pods-RunnerTests.debug.xcconfig */,
- 018597106C8E38C2A20B56DC /* Pods-RunnerTests.release.xcconfig */,
- 164233455F6E52D976E7619C /* Pods-RunnerTests.profile.xcconfig */,
+ 3421F167A26D263533D9C0F8 /* Pods-Runner.debug.xcconfig */,
+ 8367A59A9CDAA6556FC2822B /* Pods-Runner.release.xcconfig */,
+ 06C27BF5D7B993BB5DCB8D21 /* Pods-Runner.profile.xcconfig */,
+ F7B65A9BC4B475ABEC573986 /* Pods-RunnerTests.debug.xcconfig */,
+ 4ABA081B421BEA588642248C /* Pods-RunnerTests.release.xcconfig */,
+ 9BB58392A543FF4660B2490F /* Pods-RunnerTests.profile.xcconfig */,
);
name = Pods;
path = Pods;
@@ -127,8 +127,8 @@
97C146F01CF9000F007C117D /* Runner */,
97C146EF1CF9000F007C117D /* Products */,
331C8082294A63A400263BE5 /* RunnerTests */,
- 7A1ACBFB4AEFAC5081D802E1 /* Pods */,
- AD091A7825928A7EC8BC6AD6 /* Frameworks */,
+ 44BD8D06CB822F8C423FCD72 /* Pods */,
+ D054066A4956E2C378EF4A32 /* Frameworks */,
);
sourceTree = "";
};
@@ -156,11 +156,11 @@
path = Runner;
sourceTree = "";
};
- AD091A7825928A7EC8BC6AD6 /* Frameworks */ = {
+ D054066A4956E2C378EF4A32 /* Frameworks */ = {
isa = PBXGroup;
children = (
- 94F9D966F17CC87BA26C213A /* Pods_Runner.framework */,
- 6DC3026E0A86AC8F0F5BE9D2 /* Pods_RunnerTests.framework */,
+ D0BA15459E839D3553B26934 /* Pods_Runner.framework */,
+ E2086F275166C6948CE70FC0 /* Pods_RunnerTests.framework */,
);
name = Frameworks;
sourceTree = "";
@@ -172,10 +172,10 @@
isa = PBXNativeTarget;
buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
buildPhases = (
- D8787C4471D00A25C41EA2CB /* [CP] Check Pods Manifest.lock */,
+ 001D1E85333DF9609D34BC08 /* [CP] Check Pods Manifest.lock */,
331C807D294A63A400263BE5 /* Sources */,
331C807F294A63A400263BE5 /* Resources */,
- BFB82CA3C890A718124E1EDE /* Frameworks */,
+ F9E0A4607079935C37BF168F /* Frameworks */,
);
buildRules = (
);
@@ -191,14 +191,14 @@
isa = PBXNativeTarget;
buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
buildPhases = (
- 62E6FB6D8F5E3A7C56D8737D /* [CP] Check Pods Manifest.lock */,
+ 1975AD24A5DD7DE3F4DE1B61 /* [CP] Check Pods Manifest.lock */,
9740EEB61CF901F6004384FC /* Run Script */,
97C146EA1CF9000F007C117D /* Sources */,
97C146EB1CF9000F007C117D /* Frameworks */,
97C146EC1CF9000F007C117D /* Resources */,
9705A1C41CF9048500538489 /* Embed Frameworks */,
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
- 72DCD364ECC5EFBE76A41B99 /* [CP] Embed Pods Frameworks */,
+ 26E7569DC25C33E17720D218 /* [CP] Embed Pods Frameworks */,
);
buildRules = (
);
@@ -270,23 +270,29 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
- 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
+ 001D1E85333DF9609D34BC08 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
- alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
+ inputFileListPaths = (
+ );
inputPaths = (
- "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
+ "${PODS_ROOT}/Manifest.lock",
+ );
+ name = "[CP] Check Pods Manifest.lock";
+ outputFileListPaths = (
);
- name = "Thin Binary";
outputPaths = (
+ "$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
+ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
+ showEnvVarsInLog = 0;
};
- 62E6FB6D8F5E3A7C56D8737D /* [CP] Check Pods Manifest.lock */ = {
+ 1975AD24A5DD7DE3F4DE1B61 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -308,7 +314,7 @@
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
- 72DCD364ECC5EFBE76A41B99 /* [CP] Embed Pods Frameworks */ = {
+ 26E7569DC25C33E17720D218 /* [CP] Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -325,42 +331,36 @@
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
- 9740EEB61CF901F6004384FC /* Run Script */ = {
+ 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
isa = PBXShellScriptBuildPhase;
alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
+ "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
);
- name = "Run Script";
+ name = "Thin Binary";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
+ shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
};
- D8787C4471D00A25C41EA2CB /* [CP] Check Pods Manifest.lock */ = {
+ 9740EEB61CF901F6004384FC /* Run Script */ = {
isa = PBXShellScriptBuildPhase;
+ alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
- inputFileListPaths = (
- );
inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputFileListPaths = (
);
+ name = "Run Script";
outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
- showEnvVarsInLog = 0;
+ shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
};
/* End PBXShellScriptBuildPhase section */
@@ -487,7 +487,7 @@
};
331C8088294A63A400263BE5 /* Debug */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = FAB89AD13AACCB9650BBE6EA /* Pods-RunnerTests.debug.xcconfig */;
+ baseConfigurationReference = F7B65A9BC4B475ABEC573986 /* Pods-RunnerTests.debug.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CODE_SIGN_STYLE = Automatic;
@@ -505,7 +505,7 @@
};
331C8089294A63A400263BE5 /* Release */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 018597106C8E38C2A20B56DC /* Pods-RunnerTests.release.xcconfig */;
+ baseConfigurationReference = 4ABA081B421BEA588642248C /* Pods-RunnerTests.release.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CODE_SIGN_STYLE = Automatic;
@@ -521,7 +521,7 @@
};
331C808A294A63A400263BE5 /* Profile */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 164233455F6E52D976E7619C /* Pods-RunnerTests.profile.xcconfig */;
+ baseConfigurationReference = 9BB58392A543FF4660B2490F /* Pods-RunnerTests.profile.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CODE_SIGN_STYLE = Automatic;
diff --git a/boring_to_beautiful/step_04/lib/src/features/home/view/home_screen.dart b/boring_to_beautiful/step_04/lib/src/features/home/view/home_screen.dart
index ff61f22d8c..e7fc8a876d 100644
--- a/boring_to_beautiful/step_04/lib/src/features/home/view/home_screen.dart
+++ b/boring_to_beautiful/step_04/lib/src/features/home/view/home_screen.dart
@@ -30,6 +30,50 @@ class _HomeScreenState extends State {
final List artists = artistsProvider.artists;
return LayoutBuilder(
builder: (context, constraints) {
+ if (constraints.isMobile) {
+ return DefaultTabController(
+ length: 4,
+ child: Scaffold(
+ appBar: AppBar(
+ centerTitle: false,
+ title: const Text('Good morning'),
+ actions: const [BrightnessToggle()],
+ bottom: const TabBar(
+ isScrollable: true,
+ tabs: [
+ Tab(text: 'Home'),
+ Tab(text: 'Recently Played'),
+ Tab(text: 'New Releases'),
+ Tab(text: 'Top Songs'),
+ ],
+ ),
+ ),
+ body: LayoutBuilder(
+ builder: (context, constraints) => TabBarView(
+ children: [
+ SingleChildScrollView(
+ child: Column(
+ children: [
+ const HomeHighlight(),
+ HomeArtists(
+ artists: artists,
+ constraints: constraints,
+ ),
+ ],
+ ),
+ ),
+ HomeRecent(playlists: playlists, axis: Axis.vertical),
+ PlaylistSongs(playlist: topSongs, constraints: constraints),
+ PlaylistSongs(
+ playlist: newReleases,
+ constraints: constraints,
+ ),
+ ],
+ ),
+ ),
+ ),
+ );
+ }
return Scaffold(
body: SingleChildScrollView(
child: AdaptiveColumn(
diff --git a/boring_to_beautiful/step_04/lib/src/shared/views/adaptive_navigation.dart b/boring_to_beautiful/step_04/lib/src/shared/views/adaptive_navigation.dart
index 77fd135e26..17fd8f0e8a 100644
--- a/boring_to_beautiful/step_04/lib/src/shared/views/adaptive_navigation.dart
+++ b/boring_to_beautiful/step_04/lib/src/shared/views/adaptive_navigation.dart
@@ -22,25 +22,36 @@ class AdaptiveNavigation extends StatelessWidget {
Widget build(BuildContext context) {
return LayoutBuilder(
builder: (context, dimens) {
+ if (dimens.maxWidth >= 600) {
+ return Scaffold(
+ body: Row(
+ children: [
+ NavigationRail(
+ extended: dimens.maxWidth >= 800,
+ minExtendedWidth: 180,
+ destinations: destinations
+ .map(
+ (e) => NavigationRailDestination(
+ icon: e.icon,
+ label: Text(e.label),
+ ),
+ )
+ .toList(),
+ selectedIndex: selectedIndex,
+ onDestinationSelected: onDestinationSelected,
+ ),
+ Expanded(child: child),
+ ],
+ ),
+ );
+ }
+ // Mobile Layout
return Scaffold(
- body: Row(
- children: [
- NavigationRail(
- extended: dimens.maxWidth >= 800,
- minExtendedWidth: 180,
- destinations: destinations
- .map(
- (e) => NavigationRailDestination(
- icon: e.icon,
- label: Text(e.label),
- ),
- )
- .toList(),
- selectedIndex: selectedIndex,
- onDestinationSelected: onDestinationSelected,
- ),
- Expanded(child: child),
- ],
+ body: child,
+ bottomNavigationBar: NavigationBar(
+ destinations: destinations,
+ selectedIndex: selectedIndex,
+ onDestinationSelected: onDestinationSelected,
),
);
},
diff --git a/boring_to_beautiful/step_04/macos/Runner.xcodeproj/project.pbxproj b/boring_to_beautiful/step_04/macos/Runner.xcodeproj/project.pbxproj
index 6ae862c37d..79fced16c3 100644
--- a/boring_to_beautiful/step_04/macos/Runner.xcodeproj/project.pbxproj
+++ b/boring_to_beautiful/step_04/macos/Runner.xcodeproj/project.pbxproj
@@ -21,14 +21,14 @@
/* End PBXAggregateTarget section */
/* Begin PBXBuildFile section */
+ 120C1A7E7D320A31C1211A4A /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AA208D76E7C609C5BAC5DE1C /* Pods_RunnerTests.framework */; };
331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C80D7294CF71000263BE5 /* RunnerTests.swift */; };
335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */; };
33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC10F02044A3C60003C045 /* AppDelegate.swift */; };
33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; };
33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; };
33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; };
- 6A705DC52900C471DF6E1EC6 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C4369DFC5152AD3CC9336DE1 /* Pods_Runner.framework */; };
- 9AEA2C669381F3905C501B66 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A2ED1AFEDE3E0824294F5C6C /* Pods_RunnerTests.framework */; };
+ E344FE031826102CEDE46647 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E265E576032EFCCB6AB10F89 /* Pods_Runner.framework */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
@@ -62,7 +62,7 @@
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
- 049E4603B0A09E05087E56FA /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = ""; };
+ 2BCC07C46EB4E01CE044DBB6 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; };
331C80D5294CF71000263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
331C80D7294CF71000263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; };
333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = ""; };
@@ -79,15 +79,15 @@
33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = ""; };
33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = ""; };
33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = ""; };
- 54CECCDD830654297CBE27CA /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = ""; };
+ 3E5DC3FB470EEF77149E71DD /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; };
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = ""; };
+ 93864140E5DDD8350C71D815 /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = ""; };
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = ""; };
- 9FFE8F2CDA409CA0E1B27D98 /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = ""; };
- A2ED1AFEDE3E0824294F5C6C /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- C4369DFC5152AD3CC9336DE1 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- CE866162E3EE650EB52F3385 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; };
- DF7AD973C56F21946082FE37 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; };
- E9D755A13E508067E98F3444 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; };
+ 9B293DEC88BD59786AD94EBD /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; };
+ AA208D76E7C609C5BAC5DE1C /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ E265E576032EFCCB6AB10F89 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ EEFA0ABEA58A1E38E7AD7041 /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = ""; };
+ FDBDA46A6FE6381EE95E5A7A /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = ""; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
@@ -95,7 +95,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 9AEA2C669381F3905C501B66 /* Pods_RunnerTests.framework in Frameworks */,
+ 120C1A7E7D320A31C1211A4A /* Pods_RunnerTests.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -103,7 +103,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 6A705DC52900C471DF6E1EC6 /* Pods_Runner.framework in Frameworks */,
+ E344FE031826102CEDE46647 /* Pods_Runner.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -137,7 +137,7 @@
331C80D6294CF71000263BE5 /* RunnerTests */,
33CC10EE2044A3C60003C045 /* Products */,
D73912EC22F37F3D000D13A0 /* Frameworks */,
- D3381829CD41C2D96B6F2B3E /* Pods */,
+ 6CDFAAD29A585E1E7DFB128C /* Pods */,
);
sourceTree = "";
};
@@ -185,15 +185,15 @@
path = Runner;
sourceTree = "";
};
- D3381829CD41C2D96B6F2B3E /* Pods */ = {
+ 6CDFAAD29A585E1E7DFB128C /* Pods */ = {
isa = PBXGroup;
children = (
- E9D755A13E508067E98F3444 /* Pods-Runner.debug.xcconfig */,
- CE866162E3EE650EB52F3385 /* Pods-Runner.release.xcconfig */,
- DF7AD973C56F21946082FE37 /* Pods-Runner.profile.xcconfig */,
- 9FFE8F2CDA409CA0E1B27D98 /* Pods-RunnerTests.debug.xcconfig */,
- 049E4603B0A09E05087E56FA /* Pods-RunnerTests.release.xcconfig */,
- 54CECCDD830654297CBE27CA /* Pods-RunnerTests.profile.xcconfig */,
+ 3E5DC3FB470EEF77149E71DD /* Pods-Runner.debug.xcconfig */,
+ 2BCC07C46EB4E01CE044DBB6 /* Pods-Runner.release.xcconfig */,
+ 9B293DEC88BD59786AD94EBD /* Pods-Runner.profile.xcconfig */,
+ 93864140E5DDD8350C71D815 /* Pods-RunnerTests.debug.xcconfig */,
+ FDBDA46A6FE6381EE95E5A7A /* Pods-RunnerTests.release.xcconfig */,
+ EEFA0ABEA58A1E38E7AD7041 /* Pods-RunnerTests.profile.xcconfig */,
);
name = Pods;
path = Pods;
@@ -202,8 +202,8 @@
D73912EC22F37F3D000D13A0 /* Frameworks */ = {
isa = PBXGroup;
children = (
- C4369DFC5152AD3CC9336DE1 /* Pods_Runner.framework */,
- A2ED1AFEDE3E0824294F5C6C /* Pods_RunnerTests.framework */,
+ E265E576032EFCCB6AB10F89 /* Pods_Runner.framework */,
+ AA208D76E7C609C5BAC5DE1C /* Pods_RunnerTests.framework */,
);
name = Frameworks;
sourceTree = "";
@@ -215,7 +215,7 @@
isa = PBXNativeTarget;
buildConfigurationList = 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
buildPhases = (
- C59A11FAACC96E6D468156D2 /* [CP] Check Pods Manifest.lock */,
+ 36CFF57A21336FA90DED8C50 /* [CP] Check Pods Manifest.lock */,
331C80D1294CF70F00263BE5 /* Sources */,
331C80D2294CF70F00263BE5 /* Frameworks */,
331C80D3294CF70F00263BE5 /* Resources */,
@@ -234,13 +234,13 @@
isa = PBXNativeTarget;
buildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */;
buildPhases = (
- 33528B7408CACCE07D6DAD0F /* [CP] Check Pods Manifest.lock */,
+ 41EDDA96C09EE65F003D69E0 /* [CP] Check Pods Manifest.lock */,
33CC10E92044A3C60003C045 /* Sources */,
33CC10EA2044A3C60003C045 /* Frameworks */,
33CC10EB2044A3C60003C045 /* Resources */,
33CC110E2044A8840003C045 /* Bundle Framework */,
3399D490228B24CF009A79C7 /* ShellScript */,
- C6A4842BF1A9A85A617B12E2 /* [CP] Embed Pods Frameworks */,
+ 0F169C1C0F5EE8E3D274E72F /* [CP] Embed Pods Frameworks */,
);
buildRules = (
);
@@ -323,26 +323,21 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
- 33528B7408CACCE07D6DAD0F /* [CP] Check Pods Manifest.lock */ = {
+ 0F169C1C0F5EE8E3D274E72F /* [CP] Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
+ "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
);
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
+ name = "[CP] Embed Pods Frameworks";
outputFileListPaths = (
- );
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
+ "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
3399D490228B24CF009A79C7 /* ShellScript */ = {
@@ -383,7 +378,7 @@
shellPath = /bin/sh;
shellScript = "\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh && touch Flutter/ephemeral/tripwire";
};
- C59A11FAACC96E6D468156D2 /* [CP] Check Pods Manifest.lock */ = {
+ 36CFF57A21336FA90DED8C50 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -405,21 +400,26 @@
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
- C6A4842BF1A9A85A617B12E2 /* [CP] Embed Pods Frameworks */ = {
+ 41EDDA96C09EE65F003D69E0 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
);
- name = "[CP] Embed Pods Frameworks";
+ inputPaths = (
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
+ "${PODS_ROOT}/Manifest.lock",
+ );
+ name = "[CP] Check Pods Manifest.lock";
outputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
+ );
+ outputPaths = (
+ "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
+ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
/* End PBXShellScriptBuildPhase section */
@@ -473,7 +473,7 @@
/* Begin XCBuildConfiguration section */
331C80DB294CF71000263BE5 /* Debug */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 9FFE8F2CDA409CA0E1B27D98 /* Pods-RunnerTests.debug.xcconfig */;
+ baseConfigurationReference = 93864140E5DDD8350C71D815 /* Pods-RunnerTests.debug.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CURRENT_PROJECT_VERSION = 1;
@@ -488,7 +488,7 @@
};
331C80DC294CF71000263BE5 /* Release */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 049E4603B0A09E05087E56FA /* Pods-RunnerTests.release.xcconfig */;
+ baseConfigurationReference = FDBDA46A6FE6381EE95E5A7A /* Pods-RunnerTests.release.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CURRENT_PROJECT_VERSION = 1;
@@ -503,7 +503,7 @@
};
331C80DD294CF71000263BE5 /* Profile */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 54CECCDD830654297CBE27CA /* Pods-RunnerTests.profile.xcconfig */;
+ baseConfigurationReference = EEFA0ABEA58A1E38E7AD7041 /* Pods-RunnerTests.profile.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CURRENT_PROJECT_VERSION = 1;
diff --git a/boring_to_beautiful/step_04/macos/Runner/DebugProfile.entitlements b/boring_to_beautiful/step_04/macos/Runner/DebugProfile.entitlements
index 3ba6c1266f..08c3ab17cc 100644
--- a/boring_to_beautiful/step_04/macos/Runner/DebugProfile.entitlements
+++ b/boring_to_beautiful/step_04/macos/Runner/DebugProfile.entitlements
@@ -6,9 +6,9 @@
com.apple.security.cs.allow-jit
- com.apple.security.network.client
-
com.apple.security.network.server
+ com.apple.security.network.client
+
diff --git a/boring_to_beautiful/step_04/macos/Runner/Release.entitlements b/boring_to_beautiful/step_04/macos/Runner/Release.entitlements
index 7a2230dc33..ee95ab7e58 100644
--- a/boring_to_beautiful/step_04/macos/Runner/Release.entitlements
+++ b/boring_to_beautiful/step_04/macos/Runner/Release.entitlements
@@ -6,7 +6,5 @@
com.apple.security.network.client
- com.apple.security.network.server
-
diff --git a/boring_to_beautiful/step_04/pubspec.yaml b/boring_to_beautiful/step_04/pubspec.yaml
index e6cd6dfab6..817f7d00c0 100644
--- a/boring_to_beautiful/step_04/pubspec.yaml
+++ b/boring_to_beautiful/step_04/pubspec.yaml
@@ -17,7 +17,7 @@ dependencies:
english_words: ^4.0.0
flutter_bloc: ^9.1.1
freezed_annotation: ^3.0.0
- go_router: ^15.1.2
+ go_router: ^15.1.3
material_color_utilities: any
universal_platform: ^1.1.0
url_launcher: ^6.3.1
diff --git a/boring_to_beautiful/final/.gitignore b/boring_to_beautiful/step_05_a/.gitignore
similarity index 100%
rename from boring_to_beautiful/final/.gitignore
rename to boring_to_beautiful/step_05_a/.gitignore
diff --git a/boring_to_beautiful/final/.vscode/launch.json b/boring_to_beautiful/step_05_a/.vscode/launch.json
similarity index 100%
rename from boring_to_beautiful/final/.vscode/launch.json
rename to boring_to_beautiful/step_05_a/.vscode/launch.json
diff --git a/boring_to_beautiful/final/analysis_options.yaml b/boring_to_beautiful/step_05_a/analysis_options.yaml
similarity index 100%
rename from boring_to_beautiful/final/analysis_options.yaml
rename to boring_to_beautiful/step_05_a/analysis_options.yaml
diff --git a/boring_to_beautiful/final/android/.gitignore b/boring_to_beautiful/step_05_a/android/.gitignore
similarity index 100%
rename from boring_to_beautiful/final/android/.gitignore
rename to boring_to_beautiful/step_05_a/android/.gitignore
diff --git a/boring_to_beautiful/final/android/app/build.gradle.kts b/boring_to_beautiful/step_05_a/android/app/build.gradle.kts
similarity index 100%
rename from boring_to_beautiful/final/android/app/build.gradle.kts
rename to boring_to_beautiful/step_05_a/android/app/build.gradle.kts
diff --git a/boring_to_beautiful/final/android/app/src/debug/AndroidManifest.xml b/boring_to_beautiful/step_05_a/android/app/src/debug/AndroidManifest.xml
similarity index 100%
rename from boring_to_beautiful/final/android/app/src/debug/AndroidManifest.xml
rename to boring_to_beautiful/step_05_a/android/app/src/debug/AndroidManifest.xml
diff --git a/boring_to_beautiful/final/android/app/src/main/AndroidManifest.xml b/boring_to_beautiful/step_05_a/android/app/src/main/AndroidManifest.xml
similarity index 100%
rename from boring_to_beautiful/final/android/app/src/main/AndroidManifest.xml
rename to boring_to_beautiful/step_05_a/android/app/src/main/AndroidManifest.xml
diff --git a/boring_to_beautiful/final/android/app/src/main/kotlin/com/example/myartist/MainActivity.kt b/boring_to_beautiful/step_05_a/android/app/src/main/kotlin/com/example/myartist/MainActivity.kt
similarity index 100%
rename from boring_to_beautiful/final/android/app/src/main/kotlin/com/example/myartist/MainActivity.kt
rename to boring_to_beautiful/step_05_a/android/app/src/main/kotlin/com/example/myartist/MainActivity.kt
diff --git a/boring_to_beautiful/final/android/app/src/main/res/drawable-v21/launch_background.xml b/boring_to_beautiful/step_05_a/android/app/src/main/res/drawable-v21/launch_background.xml
similarity index 100%
rename from boring_to_beautiful/final/android/app/src/main/res/drawable-v21/launch_background.xml
rename to boring_to_beautiful/step_05_a/android/app/src/main/res/drawable-v21/launch_background.xml
diff --git a/boring_to_beautiful/final/android/app/src/main/res/drawable/launch_background.xml b/boring_to_beautiful/step_05_a/android/app/src/main/res/drawable/launch_background.xml
similarity index 100%
rename from boring_to_beautiful/final/android/app/src/main/res/drawable/launch_background.xml
rename to boring_to_beautiful/step_05_a/android/app/src/main/res/drawable/launch_background.xml
diff --git a/boring_to_beautiful/final/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/boring_to_beautiful/step_05_a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
similarity index 100%
rename from boring_to_beautiful/final/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
rename to boring_to_beautiful/step_05_a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
diff --git a/boring_to_beautiful/final/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/boring_to_beautiful/step_05_a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
similarity index 100%
rename from boring_to_beautiful/final/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
rename to boring_to_beautiful/step_05_a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
diff --git a/boring_to_beautiful/final/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/boring_to_beautiful/step_05_a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
similarity index 100%
rename from boring_to_beautiful/final/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
rename to boring_to_beautiful/step_05_a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
diff --git a/boring_to_beautiful/final/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/boring_to_beautiful/step_05_a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
similarity index 100%
rename from boring_to_beautiful/final/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
rename to boring_to_beautiful/step_05_a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
diff --git a/boring_to_beautiful/final/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/boring_to_beautiful/step_05_a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
similarity index 100%
rename from boring_to_beautiful/final/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
rename to boring_to_beautiful/step_05_a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
diff --git a/boring_to_beautiful/final/android/app/src/main/res/values-night/styles.xml b/boring_to_beautiful/step_05_a/android/app/src/main/res/values-night/styles.xml
similarity index 100%
rename from boring_to_beautiful/final/android/app/src/main/res/values-night/styles.xml
rename to boring_to_beautiful/step_05_a/android/app/src/main/res/values-night/styles.xml
diff --git a/boring_to_beautiful/final/android/app/src/main/res/values/styles.xml b/boring_to_beautiful/step_05_a/android/app/src/main/res/values/styles.xml
similarity index 100%
rename from boring_to_beautiful/final/android/app/src/main/res/values/styles.xml
rename to boring_to_beautiful/step_05_a/android/app/src/main/res/values/styles.xml
diff --git a/boring_to_beautiful/final/android/app/src/profile/AndroidManifest.xml b/boring_to_beautiful/step_05_a/android/app/src/profile/AndroidManifest.xml
similarity index 100%
rename from boring_to_beautiful/final/android/app/src/profile/AndroidManifest.xml
rename to boring_to_beautiful/step_05_a/android/app/src/profile/AndroidManifest.xml
diff --git a/boring_to_beautiful/final/android/build.gradle.kts b/boring_to_beautiful/step_05_a/android/build.gradle.kts
similarity index 100%
rename from boring_to_beautiful/final/android/build.gradle.kts
rename to boring_to_beautiful/step_05_a/android/build.gradle.kts
diff --git a/boring_to_beautiful/final/android/gradle.properties b/boring_to_beautiful/step_05_a/android/gradle.properties
similarity index 100%
rename from boring_to_beautiful/final/android/gradle.properties
rename to boring_to_beautiful/step_05_a/android/gradle.properties
diff --git a/boring_to_beautiful/final/android/gradle/wrapper/gradle-wrapper.properties b/boring_to_beautiful/step_05_a/android/gradle/wrapper/gradle-wrapper.properties
similarity index 100%
rename from boring_to_beautiful/final/android/gradle/wrapper/gradle-wrapper.properties
rename to boring_to_beautiful/step_05_a/android/gradle/wrapper/gradle-wrapper.properties
diff --git a/boring_to_beautiful/final/android/settings.gradle.kts b/boring_to_beautiful/step_05_a/android/settings.gradle.kts
similarity index 100%
rename from boring_to_beautiful/final/android/settings.gradle.kts
rename to boring_to_beautiful/step_05_a/android/settings.gradle.kts
diff --git a/boring_to_beautiful/final/assets/images/albums/artist1-album1.jpg b/boring_to_beautiful/step_05_a/assets/images/albums/artist1-album1.jpg
similarity index 100%
rename from boring_to_beautiful/final/assets/images/albums/artist1-album1.jpg
rename to boring_to_beautiful/step_05_a/assets/images/albums/artist1-album1.jpg
diff --git a/boring_to_beautiful/final/assets/images/albums/artist1-album2.jpg b/boring_to_beautiful/step_05_a/assets/images/albums/artist1-album2.jpg
similarity index 100%
rename from boring_to_beautiful/final/assets/images/albums/artist1-album2.jpg
rename to boring_to_beautiful/step_05_a/assets/images/albums/artist1-album2.jpg
diff --git a/boring_to_beautiful/final/assets/images/albums/artist1-album3.jpg b/boring_to_beautiful/step_05_a/assets/images/albums/artist1-album3.jpg
similarity index 100%
rename from boring_to_beautiful/final/assets/images/albums/artist1-album3.jpg
rename to boring_to_beautiful/step_05_a/assets/images/albums/artist1-album3.jpg
diff --git a/boring_to_beautiful/final/assets/images/albums/artist2-album2.jpg b/boring_to_beautiful/step_05_a/assets/images/albums/artist2-album2.jpg
similarity index 100%
rename from boring_to_beautiful/final/assets/images/albums/artist2-album2.jpg
rename to boring_to_beautiful/step_05_a/assets/images/albums/artist2-album2.jpg
diff --git a/boring_to_beautiful/final/assets/images/albums/artist3-album1.jpg b/boring_to_beautiful/step_05_a/assets/images/albums/artist3-album1.jpg
similarity index 100%
rename from boring_to_beautiful/final/assets/images/albums/artist3-album1.jpg
rename to boring_to_beautiful/step_05_a/assets/images/albums/artist3-album1.jpg
diff --git a/boring_to_beautiful/final/assets/images/albums/artist4-album1.jpg b/boring_to_beautiful/step_05_a/assets/images/albums/artist4-album1.jpg
similarity index 100%
rename from boring_to_beautiful/final/assets/images/albums/artist4-album1.jpg
rename to boring_to_beautiful/step_05_a/assets/images/albums/artist4-album1.jpg
diff --git a/boring_to_beautiful/final/assets/images/albums/artist4-album2.jpg b/boring_to_beautiful/step_05_a/assets/images/albums/artist4-album2.jpg
similarity index 100%
rename from boring_to_beautiful/final/assets/images/albums/artist4-album2.jpg
rename to boring_to_beautiful/step_05_a/assets/images/albums/artist4-album2.jpg
diff --git a/boring_to_beautiful/final/assets/images/albums/artist4-album3.jpg b/boring_to_beautiful/step_05_a/assets/images/albums/artist4-album3.jpg
similarity index 100%
rename from boring_to_beautiful/final/assets/images/albums/artist4-album3.jpg
rename to boring_to_beautiful/step_05_a/assets/images/albums/artist4-album3.jpg
diff --git a/boring_to_beautiful/final/assets/images/albums/artist5-album1.jpg b/boring_to_beautiful/step_05_a/assets/images/albums/artist5-album1.jpg
similarity index 100%
rename from boring_to_beautiful/final/assets/images/albums/artist5-album1.jpg
rename to boring_to_beautiful/step_05_a/assets/images/albums/artist5-album1.jpg
diff --git a/boring_to_beautiful/final/assets/images/albums/artist5-album2.jpg b/boring_to_beautiful/step_05_a/assets/images/albums/artist5-album2.jpg
similarity index 100%
rename from boring_to_beautiful/final/assets/images/albums/artist5-album2.jpg
rename to boring_to_beautiful/step_05_a/assets/images/albums/artist5-album2.jpg
diff --git a/boring_to_beautiful/final/assets/images/albums/artist6-album1.jpg b/boring_to_beautiful/step_05_a/assets/images/albums/artist6-album1.jpg
similarity index 100%
rename from boring_to_beautiful/final/assets/images/albums/artist6-album1.jpg
rename to boring_to_beautiful/step_05_a/assets/images/albums/artist6-album1.jpg
diff --git a/boring_to_beautiful/final/assets/images/albums/artist6-album2.jpg b/boring_to_beautiful/step_05_a/assets/images/albums/artist6-album2.jpg
similarity index 100%
rename from boring_to_beautiful/final/assets/images/albums/artist6-album2.jpg
rename to boring_to_beautiful/step_05_a/assets/images/albums/artist6-album2.jpg
diff --git a/boring_to_beautiful/final/assets/images/albums/artist6-album3.jpg b/boring_to_beautiful/step_05_a/assets/images/albums/artist6-album3.jpg
similarity index 100%
rename from boring_to_beautiful/final/assets/images/albums/artist6-album3.jpg
rename to boring_to_beautiful/step_05_a/assets/images/albums/artist6-album3.jpg
diff --git a/boring_to_beautiful/final/assets/images/artists/joe.jpg b/boring_to_beautiful/step_05_a/assets/images/artists/joe.jpg
similarity index 100%
rename from boring_to_beautiful/final/assets/images/artists/joe.jpg
rename to boring_to_beautiful/step_05_a/assets/images/artists/joe.jpg
diff --git a/boring_to_beautiful/final/assets/images/artists/woman.jpeg b/boring_to_beautiful/step_05_a/assets/images/artists/woman.jpeg
similarity index 100%
rename from boring_to_beautiful/final/assets/images/artists/woman.jpeg
rename to boring_to_beautiful/step_05_a/assets/images/artists/woman.jpeg
diff --git a/boring_to_beautiful/final/assets/images/news/concert.jpeg b/boring_to_beautiful/step_05_a/assets/images/news/concert.jpeg
similarity index 100%
rename from boring_to_beautiful/final/assets/images/news/concert.jpeg
rename to boring_to_beautiful/step_05_a/assets/images/news/concert.jpeg
diff --git a/boring_to_beautiful/final/assets/images/news/concert_heart.jpg b/boring_to_beautiful/step_05_a/assets/images/news/concert_heart.jpg
similarity index 100%
rename from boring_to_beautiful/final/assets/images/news/concert_heart.jpg
rename to boring_to_beautiful/step_05_a/assets/images/news/concert_heart.jpg
diff --git a/boring_to_beautiful/final/assets/images/news/recording_studio.jpg b/boring_to_beautiful/step_05_a/assets/images/news/recording_studio.jpg
similarity index 100%
rename from boring_to_beautiful/final/assets/images/news/recording_studio.jpg
rename to boring_to_beautiful/step_05_a/assets/images/news/recording_studio.jpg
diff --git a/boring_to_beautiful/final/assets/images/playlists/austin.jpg b/boring_to_beautiful/step_05_a/assets/images/playlists/austin.jpg
similarity index 100%
rename from boring_to_beautiful/final/assets/images/playlists/austin.jpg
rename to boring_to_beautiful/step_05_a/assets/images/playlists/austin.jpg
diff --git a/boring_to_beautiful/final/assets/images/playlists/calm.jpg b/boring_to_beautiful/step_05_a/assets/images/playlists/calm.jpg
similarity index 100%
rename from boring_to_beautiful/final/assets/images/playlists/calm.jpg
rename to boring_to_beautiful/step_05_a/assets/images/playlists/calm.jpg
diff --git a/boring_to_beautiful/final/assets/images/playlists/coffee.jpg b/boring_to_beautiful/step_05_a/assets/images/playlists/coffee.jpg
similarity index 100%
rename from boring_to_beautiful/final/assets/images/playlists/coffee.jpg
rename to boring_to_beautiful/step_05_a/assets/images/playlists/coffee.jpg
diff --git a/boring_to_beautiful/final/assets/images/playlists/favorite.jpg b/boring_to_beautiful/step_05_a/assets/images/playlists/favorite.jpg
similarity index 100%
rename from boring_to_beautiful/final/assets/images/playlists/favorite.jpg
rename to boring_to_beautiful/step_05_a/assets/images/playlists/favorite.jpg
diff --git a/boring_to_beautiful/final/assets/images/playlists/jazz.jpg b/boring_to_beautiful/step_05_a/assets/images/playlists/jazz.jpg
similarity index 100%
rename from boring_to_beautiful/final/assets/images/playlists/jazz.jpg
rename to boring_to_beautiful/step_05_a/assets/images/playlists/jazz.jpg
diff --git a/boring_to_beautiful/final/assets/images/playlists/piano.jpg b/boring_to_beautiful/step_05_a/assets/images/playlists/piano.jpg
similarity index 100%
rename from boring_to_beautiful/final/assets/images/playlists/piano.jpg
rename to boring_to_beautiful/step_05_a/assets/images/playlists/piano.jpg
diff --git a/boring_to_beautiful/final/assets/images/playlists/reading.jpg b/boring_to_beautiful/step_05_a/assets/images/playlists/reading.jpg
similarity index 100%
rename from boring_to_beautiful/final/assets/images/playlists/reading.jpg
rename to boring_to_beautiful/step_05_a/assets/images/playlists/reading.jpg
diff --git a/boring_to_beautiful/final/assets/images/playlists/studying.jpg b/boring_to_beautiful/step_05_a/assets/images/playlists/studying.jpg
similarity index 100%
rename from boring_to_beautiful/final/assets/images/playlists/studying.jpg
rename to boring_to_beautiful/step_05_a/assets/images/playlists/studying.jpg
diff --git a/boring_to_beautiful/final/assets/images/playlists/workout.jpg b/boring_to_beautiful/step_05_a/assets/images/playlists/workout.jpg
similarity index 100%
rename from boring_to_beautiful/final/assets/images/playlists/workout.jpg
rename to boring_to_beautiful/step_05_a/assets/images/playlists/workout.jpg
diff --git a/boring_to_beautiful/final/assets/images/record.jpeg b/boring_to_beautiful/step_05_a/assets/images/record.jpeg
similarity index 100%
rename from boring_to_beautiful/final/assets/images/record.jpeg
rename to boring_to_beautiful/step_05_a/assets/images/record.jpeg
diff --git a/boring_to_beautiful/final/ios/.gitignore b/boring_to_beautiful/step_05_a/ios/.gitignore
similarity index 100%
rename from boring_to_beautiful/final/ios/.gitignore
rename to boring_to_beautiful/step_05_a/ios/.gitignore
diff --git a/boring_to_beautiful/final/ios/Flutter/AppFrameworkInfo.plist b/boring_to_beautiful/step_05_a/ios/Flutter/AppFrameworkInfo.plist
similarity index 100%
rename from boring_to_beautiful/final/ios/Flutter/AppFrameworkInfo.plist
rename to boring_to_beautiful/step_05_a/ios/Flutter/AppFrameworkInfo.plist
diff --git a/boring_to_beautiful/final/ios/Flutter/Debug.xcconfig b/boring_to_beautiful/step_05_a/ios/Flutter/Debug.xcconfig
similarity index 100%
rename from boring_to_beautiful/final/ios/Flutter/Debug.xcconfig
rename to boring_to_beautiful/step_05_a/ios/Flutter/Debug.xcconfig
diff --git a/boring_to_beautiful/final/ios/Flutter/Release.xcconfig b/boring_to_beautiful/step_05_a/ios/Flutter/Release.xcconfig
similarity index 100%
rename from boring_to_beautiful/final/ios/Flutter/Release.xcconfig
rename to boring_to_beautiful/step_05_a/ios/Flutter/Release.xcconfig
diff --git a/boring_to_beautiful/final/ios/Podfile b/boring_to_beautiful/step_05_a/ios/Podfile
similarity index 100%
rename from boring_to_beautiful/final/ios/Podfile
rename to boring_to_beautiful/step_05_a/ios/Podfile
diff --git a/boring_to_beautiful/final/ios/Runner.xcodeproj/project.pbxproj b/boring_to_beautiful/step_05_a/ios/Runner.xcodeproj/project.pbxproj
similarity index 92%
rename from boring_to_beautiful/final/ios/Runner.xcodeproj/project.pbxproj
rename to boring_to_beautiful/step_05_a/ios/Runner.xcodeproj/project.pbxproj
index ebb1244e8b..c30322fdf6 100644
--- a/boring_to_beautiful/final/ios/Runner.xcodeproj/project.pbxproj
+++ b/boring_to_beautiful/step_05_a/ios/Runner.xcodeproj/project.pbxproj
@@ -7,15 +7,15 @@
objects = {
/* Begin PBXBuildFile section */
- 0BA3C72CFF7FB3D58116BBE0 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6DC3026E0A86AC8F0F5BE9D2 /* Pods_RunnerTests.framework */; };
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
- 28D4EB9BC109C11A38856D7C /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 94F9D966F17CC87BA26C213A /* Pods_Runner.framework */; };
+ 31AC9F1F861163CE474DC0DF /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D0BA15459E839D3553B26934 /* Pods_Runner.framework */; };
331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
+ C4EE9B5B592653F634344186 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E2086F275166C6948CE70FC0 /* Pods_RunnerTests.framework */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
@@ -42,20 +42,18 @@
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
- 018597106C8E38C2A20B56DC /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = ""; };
- 1454C98E0DB9BDD277830752 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; };
+ 06C27BF5D7B993BB5DCB8D21 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; };
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; };
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; };
- 164233455F6E52D976E7619C /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = ""; };
- 203DA535161F6F2E1631CA2F /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; };
331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; };
331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
+ 3421F167A26D263533D9C0F8 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; };
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; };
- 6DC3026E0A86AC8F0F5BE9D2 /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ 4ABA081B421BEA588642248C /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = ""; };
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; };
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; };
- 94F9D966F17CC87BA26C213A /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ 8367A59A9CDAA6556FC2822B /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; };
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; };
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; };
97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
@@ -63,8 +61,10 @@
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
- E367CC7226100F29F71405B1 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; };
- FAB89AD13AACCB9650BBE6EA /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = ""; };
+ 9BB58392A543FF4660B2490F /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = ""; };
+ D0BA15459E839D3553B26934 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ E2086F275166C6948CE70FC0 /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ F7B65A9BC4B475ABEC573986 /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = ""; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
@@ -72,15 +72,15 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 28D4EB9BC109C11A38856D7C /* Pods_Runner.framework in Frameworks */,
+ 31AC9F1F861163CE474DC0DF /* Pods_Runner.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- BFB82CA3C890A718124E1EDE /* Frameworks */ = {
+ F9E0A4607079935C37BF168F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 0BA3C72CFF7FB3D58116BBE0 /* Pods_RunnerTests.framework in Frameworks */,
+ C4EE9B5B592653F634344186 /* Pods_RunnerTests.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -95,15 +95,15 @@
path = RunnerTests;
sourceTree = "";
};
- 7A1ACBFB4AEFAC5081D802E1 /* Pods */ = {
+ 44BD8D06CB822F8C423FCD72 /* Pods */ = {
isa = PBXGroup;
children = (
- E367CC7226100F29F71405B1 /* Pods-Runner.debug.xcconfig */,
- 1454C98E0DB9BDD277830752 /* Pods-Runner.release.xcconfig */,
- 203DA535161F6F2E1631CA2F /* Pods-Runner.profile.xcconfig */,
- FAB89AD13AACCB9650BBE6EA /* Pods-RunnerTests.debug.xcconfig */,
- 018597106C8E38C2A20B56DC /* Pods-RunnerTests.release.xcconfig */,
- 164233455F6E52D976E7619C /* Pods-RunnerTests.profile.xcconfig */,
+ 3421F167A26D263533D9C0F8 /* Pods-Runner.debug.xcconfig */,
+ 8367A59A9CDAA6556FC2822B /* Pods-Runner.release.xcconfig */,
+ 06C27BF5D7B993BB5DCB8D21 /* Pods-Runner.profile.xcconfig */,
+ F7B65A9BC4B475ABEC573986 /* Pods-RunnerTests.debug.xcconfig */,
+ 4ABA081B421BEA588642248C /* Pods-RunnerTests.release.xcconfig */,
+ 9BB58392A543FF4660B2490F /* Pods-RunnerTests.profile.xcconfig */,
);
name = Pods;
path = Pods;
@@ -127,8 +127,8 @@
97C146F01CF9000F007C117D /* Runner */,
97C146EF1CF9000F007C117D /* Products */,
331C8082294A63A400263BE5 /* RunnerTests */,
- 7A1ACBFB4AEFAC5081D802E1 /* Pods */,
- AD091A7825928A7EC8BC6AD6 /* Frameworks */,
+ 44BD8D06CB822F8C423FCD72 /* Pods */,
+ D054066A4956E2C378EF4A32 /* Frameworks */,
);
sourceTree = "";
};
@@ -156,11 +156,11 @@
path = Runner;
sourceTree = "";
};
- AD091A7825928A7EC8BC6AD6 /* Frameworks */ = {
+ D054066A4956E2C378EF4A32 /* Frameworks */ = {
isa = PBXGroup;
children = (
- 94F9D966F17CC87BA26C213A /* Pods_Runner.framework */,
- 6DC3026E0A86AC8F0F5BE9D2 /* Pods_RunnerTests.framework */,
+ D0BA15459E839D3553B26934 /* Pods_Runner.framework */,
+ E2086F275166C6948CE70FC0 /* Pods_RunnerTests.framework */,
);
name = Frameworks;
sourceTree = "";
@@ -172,10 +172,10 @@
isa = PBXNativeTarget;
buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
buildPhases = (
- D8787C4471D00A25C41EA2CB /* [CP] Check Pods Manifest.lock */,
+ 001D1E85333DF9609D34BC08 /* [CP] Check Pods Manifest.lock */,
331C807D294A63A400263BE5 /* Sources */,
331C807F294A63A400263BE5 /* Resources */,
- BFB82CA3C890A718124E1EDE /* Frameworks */,
+ F9E0A4607079935C37BF168F /* Frameworks */,
);
buildRules = (
);
@@ -191,14 +191,14 @@
isa = PBXNativeTarget;
buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
buildPhases = (
- 62E6FB6D8F5E3A7C56D8737D /* [CP] Check Pods Manifest.lock */,
+ 1975AD24A5DD7DE3F4DE1B61 /* [CP] Check Pods Manifest.lock */,
9740EEB61CF901F6004384FC /* Run Script */,
97C146EA1CF9000F007C117D /* Sources */,
97C146EB1CF9000F007C117D /* Frameworks */,
97C146EC1CF9000F007C117D /* Resources */,
9705A1C41CF9048500538489 /* Embed Frameworks */,
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
- 72DCD364ECC5EFBE76A41B99 /* [CP] Embed Pods Frameworks */,
+ 26E7569DC25C33E17720D218 /* [CP] Embed Pods Frameworks */,
);
buildRules = (
);
@@ -270,23 +270,29 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
- 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
+ 001D1E85333DF9609D34BC08 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
- alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
+ inputFileListPaths = (
+ );
inputPaths = (
- "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
+ "${PODS_ROOT}/Manifest.lock",
+ );
+ name = "[CP] Check Pods Manifest.lock";
+ outputFileListPaths = (
);
- name = "Thin Binary";
outputPaths = (
+ "$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
+ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
+ showEnvVarsInLog = 0;
};
- 62E6FB6D8F5E3A7C56D8737D /* [CP] Check Pods Manifest.lock */ = {
+ 1975AD24A5DD7DE3F4DE1B61 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -308,7 +314,7 @@
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
- 72DCD364ECC5EFBE76A41B99 /* [CP] Embed Pods Frameworks */ = {
+ 26E7569DC25C33E17720D218 /* [CP] Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -325,42 +331,36 @@
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
- 9740EEB61CF901F6004384FC /* Run Script */ = {
+ 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
isa = PBXShellScriptBuildPhase;
alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
+ "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
);
- name = "Run Script";
+ name = "Thin Binary";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
+ shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
};
- D8787C4471D00A25C41EA2CB /* [CP] Check Pods Manifest.lock */ = {
+ 9740EEB61CF901F6004384FC /* Run Script */ = {
isa = PBXShellScriptBuildPhase;
+ alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
- inputFileListPaths = (
- );
inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputFileListPaths = (
);
+ name = "Run Script";
outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
- showEnvVarsInLog = 0;
+ shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
};
/* End PBXShellScriptBuildPhase section */
@@ -487,7 +487,7 @@
};
331C8088294A63A400263BE5 /* Debug */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = FAB89AD13AACCB9650BBE6EA /* Pods-RunnerTests.debug.xcconfig */;
+ baseConfigurationReference = F7B65A9BC4B475ABEC573986 /* Pods-RunnerTests.debug.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CODE_SIGN_STYLE = Automatic;
@@ -505,7 +505,7 @@
};
331C8089294A63A400263BE5 /* Release */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 018597106C8E38C2A20B56DC /* Pods-RunnerTests.release.xcconfig */;
+ baseConfigurationReference = 4ABA081B421BEA588642248C /* Pods-RunnerTests.release.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CODE_SIGN_STYLE = Automatic;
@@ -521,7 +521,7 @@
};
331C808A294A63A400263BE5 /* Profile */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 164233455F6E52D976E7619C /* Pods-RunnerTests.profile.xcconfig */;
+ baseConfigurationReference = 9BB58392A543FF4660B2490F /* Pods-RunnerTests.profile.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CODE_SIGN_STYLE = Automatic;
diff --git a/boring_to_beautiful/final/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/boring_to_beautiful/step_05_a/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
rename to boring_to_beautiful/step_05_a/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
diff --git a/boring_to_beautiful/final/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/boring_to_beautiful/step_05_a/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
rename to boring_to_beautiful/step_05_a/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
diff --git a/boring_to_beautiful/final/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/boring_to_beautiful/step_05_a/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
rename to boring_to_beautiful/step_05_a/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
diff --git a/boring_to_beautiful/final/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/boring_to_beautiful/step_05_a/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
rename to boring_to_beautiful/step_05_a/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
diff --git a/boring_to_beautiful/final/ios/Runner.xcworkspace/contents.xcworkspacedata b/boring_to_beautiful/step_05_a/ios/Runner.xcworkspace/contents.xcworkspacedata
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner.xcworkspace/contents.xcworkspacedata
rename to boring_to_beautiful/step_05_a/ios/Runner.xcworkspace/contents.xcworkspacedata
diff --git a/boring_to_beautiful/final/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/boring_to_beautiful/step_05_a/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
rename to boring_to_beautiful/step_05_a/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
diff --git a/boring_to_beautiful/final/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/boring_to_beautiful/step_05_a/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
rename to boring_to_beautiful/step_05_a/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
diff --git a/boring_to_beautiful/final/ios/Runner/AppDelegate.swift b/boring_to_beautiful/step_05_a/ios/Runner/AppDelegate.swift
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner/AppDelegate.swift
rename to boring_to_beautiful/step_05_a/ios/Runner/AppDelegate.swift
diff --git a/boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
rename to boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
diff --git a/boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
rename to boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
diff --git a/boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
rename to boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
diff --git a/boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
rename to boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
diff --git a/boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
rename to boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
diff --git a/boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
rename to boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
diff --git a/boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
rename to boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
diff --git a/boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
rename to boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
diff --git a/boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
rename to boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
diff --git a/boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
rename to boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
diff --git a/boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
rename to boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
diff --git a/boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
rename to boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
diff --git a/boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
rename to boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
diff --git a/boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
rename to boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
diff --git a/boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
rename to boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
diff --git a/boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
rename to boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
diff --git a/boring_to_beautiful/final/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
rename to boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
diff --git a/boring_to_beautiful/final/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
rename to boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
diff --git a/boring_to_beautiful/final/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
rename to boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
diff --git a/boring_to_beautiful/final/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
rename to boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
diff --git a/boring_to_beautiful/final/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
rename to boring_to_beautiful/step_05_a/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
diff --git a/boring_to_beautiful/final/ios/Runner/Base.lproj/LaunchScreen.storyboard b/boring_to_beautiful/step_05_a/ios/Runner/Base.lproj/LaunchScreen.storyboard
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner/Base.lproj/LaunchScreen.storyboard
rename to boring_to_beautiful/step_05_a/ios/Runner/Base.lproj/LaunchScreen.storyboard
diff --git a/boring_to_beautiful/final/ios/Runner/Base.lproj/Main.storyboard b/boring_to_beautiful/step_05_a/ios/Runner/Base.lproj/Main.storyboard
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner/Base.lproj/Main.storyboard
rename to boring_to_beautiful/step_05_a/ios/Runner/Base.lproj/Main.storyboard
diff --git a/boring_to_beautiful/final/ios/Runner/Info.plist b/boring_to_beautiful/step_05_a/ios/Runner/Info.plist
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner/Info.plist
rename to boring_to_beautiful/step_05_a/ios/Runner/Info.plist
diff --git a/boring_to_beautiful/final/ios/Runner/Runner-Bridging-Header.h b/boring_to_beautiful/step_05_a/ios/Runner/Runner-Bridging-Header.h
similarity index 100%
rename from boring_to_beautiful/final/ios/Runner/Runner-Bridging-Header.h
rename to boring_to_beautiful/step_05_a/ios/Runner/Runner-Bridging-Header.h
diff --git a/boring_to_beautiful/final/ios/RunnerTests/RunnerTests.swift b/boring_to_beautiful/step_05_a/ios/RunnerTests/RunnerTests.swift
similarity index 100%
rename from boring_to_beautiful/final/ios/RunnerTests/RunnerTests.swift
rename to boring_to_beautiful/step_05_a/ios/RunnerTests/RunnerTests.swift
diff --git a/boring_to_beautiful/final/lib/main.dart b/boring_to_beautiful/step_05_a/lib/main.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/main.dart
rename to boring_to_beautiful/step_05_a/lib/main.dart
diff --git a/boring_to_beautiful/final/lib/src/features/artists/artists.dart b/boring_to_beautiful/step_05_a/lib/src/features/artists/artists.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/features/artists/artists.dart
rename to boring_to_beautiful/step_05_a/lib/src/features/artists/artists.dart
diff --git a/boring_to_beautiful/final/lib/src/features/artists/view/artist_bio.dart b/boring_to_beautiful/step_05_a/lib/src/features/artists/view/artist_bio.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/features/artists/view/artist_bio.dart
rename to boring_to_beautiful/step_05_a/lib/src/features/artists/view/artist_bio.dart
diff --git a/boring_to_beautiful/final/lib/src/features/artists/view/artist_card.dart b/boring_to_beautiful/step_05_a/lib/src/features/artists/view/artist_card.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/features/artists/view/artist_card.dart
rename to boring_to_beautiful/step_05_a/lib/src/features/artists/view/artist_card.dart
diff --git a/boring_to_beautiful/final/lib/src/features/artists/view/artist_events.dart b/boring_to_beautiful/step_05_a/lib/src/features/artists/view/artist_events.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/features/artists/view/artist_events.dart
rename to boring_to_beautiful/step_05_a/lib/src/features/artists/view/artist_events.dart
diff --git a/boring_to_beautiful/final/lib/src/features/artists/view/artist_news.dart b/boring_to_beautiful/step_05_a/lib/src/features/artists/view/artist_news.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/features/artists/view/artist_news.dart
rename to boring_to_beautiful/step_05_a/lib/src/features/artists/view/artist_news.dart
diff --git a/boring_to_beautiful/final/lib/src/features/artists/view/artist_ranked_songs.dart b/boring_to_beautiful/step_05_a/lib/src/features/artists/view/artist_ranked_songs.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/features/artists/view/artist_ranked_songs.dart
rename to boring_to_beautiful/step_05_a/lib/src/features/artists/view/artist_ranked_songs.dart
diff --git a/boring_to_beautiful/final/lib/src/features/artists/view/artist_screen.dart b/boring_to_beautiful/step_05_a/lib/src/features/artists/view/artist_screen.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/features/artists/view/artist_screen.dart
rename to boring_to_beautiful/step_05_a/lib/src/features/artists/view/artist_screen.dart
diff --git a/boring_to_beautiful/final/lib/src/features/artists/view/artist_updates.dart b/boring_to_beautiful/step_05_a/lib/src/features/artists/view/artist_updates.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/features/artists/view/artist_updates.dart
rename to boring_to_beautiful/step_05_a/lib/src/features/artists/view/artist_updates.dart
diff --git a/boring_to_beautiful/final/lib/src/features/artists/view/artists_screen.dart b/boring_to_beautiful/step_05_a/lib/src/features/artists/view/artists_screen.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/features/artists/view/artists_screen.dart
rename to boring_to_beautiful/step_05_a/lib/src/features/artists/view/artists_screen.dart
diff --git a/boring_to_beautiful/final/lib/src/features/artists/view/view.dart b/boring_to_beautiful/step_05_a/lib/src/features/artists/view/view.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/features/artists/view/view.dart
rename to boring_to_beautiful/step_05_a/lib/src/features/artists/view/view.dart
diff --git a/boring_to_beautiful/final/lib/src/features/home/home.dart b/boring_to_beautiful/step_05_a/lib/src/features/home/home.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/features/home/home.dart
rename to boring_to_beautiful/step_05_a/lib/src/features/home/home.dart
diff --git a/boring_to_beautiful/final/lib/src/features/home/view/home_artists.dart b/boring_to_beautiful/step_05_a/lib/src/features/home/view/home_artists.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/features/home/view/home_artists.dart
rename to boring_to_beautiful/step_05_a/lib/src/features/home/view/home_artists.dart
diff --git a/boring_to_beautiful/final/lib/src/features/home/view/home_highlight.dart b/boring_to_beautiful/step_05_a/lib/src/features/home/view/home_highlight.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/features/home/view/home_highlight.dart
rename to boring_to_beautiful/step_05_a/lib/src/features/home/view/home_highlight.dart
diff --git a/boring_to_beautiful/final/lib/src/features/home/view/home_recent.dart b/boring_to_beautiful/step_05_a/lib/src/features/home/view/home_recent.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/features/home/view/home_recent.dart
rename to boring_to_beautiful/step_05_a/lib/src/features/home/view/home_recent.dart
diff --git a/boring_to_beautiful/step_05/lib/src/features/home/view/home_screen.dart b/boring_to_beautiful/step_05_a/lib/src/features/home/view/home_screen.dart
similarity index 95%
rename from boring_to_beautiful/step_05/lib/src/features/home/view/home_screen.dart
rename to boring_to_beautiful/step_05_a/lib/src/features/home/view/home_screen.dart
index e7fc8a876d..e0b5001d46 100644
--- a/boring_to_beautiful/step_05/lib/src/features/home/view/home_screen.dart
+++ b/boring_to_beautiful/step_05_a/lib/src/features/home/view/home_screen.dart
@@ -81,7 +81,7 @@ class _HomeScreenState extends State {
AdaptiveContainer(
columnSpan: 12,
child: Padding(
- padding: const EdgeInsets.all(2),
+ padding: const EdgeInsets.all(35),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
@@ -117,7 +117,7 @@ class _HomeScreenState extends State {
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Padding(
- padding: const EdgeInsets.all(2),
+ padding: const EdgeInsets.all(35),
child: Text(
'Recently played',
style: context.headlineSmall,
@@ -130,7 +130,7 @@ class _HomeScreenState extends State {
AdaptiveContainer(
columnSpan: 12,
child: Padding(
- padding: const EdgeInsets.all(2),
+ padding: const EdgeInsets.all(35),
child: Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
@@ -141,7 +141,7 @@ class _HomeScreenState extends State {
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Padding(
- padding: const EdgeInsets.all(2),
+ padding: const EdgeInsets.all(35),
child: Text(
'Top Songs Today',
style: context.titleLarge,
@@ -164,7 +164,7 @@ class _HomeScreenState extends State {
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Padding(
- padding: const EdgeInsets.all(2),
+ padding: const EdgeInsets.all(35),
child: Text(
'New Releases',
style: context.titleLarge,
diff --git a/boring_to_beautiful/final/lib/src/features/home/view/view.dart b/boring_to_beautiful/step_05_a/lib/src/features/home/view/view.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/features/home/view/view.dart
rename to boring_to_beautiful/step_05_a/lib/src/features/home/view/view.dart
diff --git a/boring_to_beautiful/final/lib/src/features/playlists/playlists.dart b/boring_to_beautiful/step_05_a/lib/src/features/playlists/playlists.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/features/playlists/playlists.dart
rename to boring_to_beautiful/step_05_a/lib/src/features/playlists/playlists.dart
diff --git a/boring_to_beautiful/final/lib/src/features/playlists/view/playlist_home_screen.dart b/boring_to_beautiful/step_05_a/lib/src/features/playlists/view/playlist_home_screen.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/features/playlists/view/playlist_home_screen.dart
rename to boring_to_beautiful/step_05_a/lib/src/features/playlists/view/playlist_home_screen.dart
diff --git a/boring_to_beautiful/final/lib/src/features/playlists/view/playlist_screen.dart b/boring_to_beautiful/step_05_a/lib/src/features/playlists/view/playlist_screen.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/features/playlists/view/playlist_screen.dart
rename to boring_to_beautiful/step_05_a/lib/src/features/playlists/view/playlist_screen.dart
diff --git a/boring_to_beautiful/step_05/lib/src/features/playlists/view/playlist_songs.dart b/boring_to_beautiful/step_05_a/lib/src/features/playlists/view/playlist_songs.dart
similarity index 100%
rename from boring_to_beautiful/step_05/lib/src/features/playlists/view/playlist_songs.dart
rename to boring_to_beautiful/step_05_a/lib/src/features/playlists/view/playlist_songs.dart
diff --git a/boring_to_beautiful/final/lib/src/features/playlists/view/view.dart b/boring_to_beautiful/step_05_a/lib/src/features/playlists/view/view.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/features/playlists/view/view.dart
rename to boring_to_beautiful/step_05_a/lib/src/features/playlists/view/view.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/app.dart b/boring_to_beautiful/step_05_a/lib/src/shared/app.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/app.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/app.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/classes/artist.dart b/boring_to_beautiful/step_05_a/lib/src/shared/classes/artist.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/classes/artist.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/classes/artist.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/classes/classes.dart b/boring_to_beautiful/step_05_a/lib/src/shared/classes/classes.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/classes/classes.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/classes/classes.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/classes/event.dart b/boring_to_beautiful/step_05_a/lib/src/shared/classes/event.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/classes/event.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/classes/event.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/classes/image.dart b/boring_to_beautiful/step_05_a/lib/src/shared/classes/image.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/classes/image.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/classes/image.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/classes/news.dart b/boring_to_beautiful/step_05_a/lib/src/shared/classes/news.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/classes/news.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/classes/news.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/classes/playlist.dart b/boring_to_beautiful/step_05_a/lib/src/shared/classes/playlist.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/classes/playlist.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/classes/playlist.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/classes/ranked_song.dart b/boring_to_beautiful/step_05_a/lib/src/shared/classes/ranked_song.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/classes/ranked_song.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/classes/ranked_song.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/classes/song.dart b/boring_to_beautiful/step_05_a/lib/src/shared/classes/song.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/classes/song.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/classes/song.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/extensions.dart b/boring_to_beautiful/step_05_a/lib/src/shared/extensions.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/extensions.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/extensions.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/playback/bloc/bloc.dart b/boring_to_beautiful/step_05_a/lib/src/shared/playback/bloc/bloc.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/playback/bloc/bloc.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/playback/bloc/bloc.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/playback/bloc/playback_bloc.dart b/boring_to_beautiful/step_05_a/lib/src/shared/playback/bloc/playback_bloc.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/playback/bloc/playback_bloc.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/playback/bloc/playback_bloc.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/playback/bloc/playback_bloc.freezed.dart b/boring_to_beautiful/step_05_a/lib/src/shared/playback/bloc/playback_bloc.freezed.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/playback/bloc/playback_bloc.freezed.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/playback/bloc/playback_bloc.freezed.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/playback/bloc/playback_event.dart b/boring_to_beautiful/step_05_a/lib/src/shared/playback/bloc/playback_event.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/playback/bloc/playback_event.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/playback/bloc/playback_event.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/playback/bloc/playback_state.dart b/boring_to_beautiful/step_05_a/lib/src/shared/playback/bloc/playback_state.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/playback/bloc/playback_state.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/playback/bloc/playback_state.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/providers/artists.dart b/boring_to_beautiful/step_05_a/lib/src/shared/providers/artists.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/providers/artists.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/providers/artists.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/providers/playlists.dart b/boring_to_beautiful/step_05_a/lib/src/shared/providers/playlists.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/providers/playlists.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/providers/playlists.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/providers/providers.dart b/boring_to_beautiful/step_05_a/lib/src/shared/providers/providers.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/providers/providers.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/providers/providers.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/providers/songs.dart b/boring_to_beautiful/step_05_a/lib/src/shared/providers/songs.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/providers/songs.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/providers/songs.dart
diff --git a/boring_to_beautiful/step_05/lib/src/shared/providers/theme.dart b/boring_to_beautiful/step_05_a/lib/src/shared/providers/theme.dart
similarity index 100%
rename from boring_to_beautiful/step_05/lib/src/shared/providers/theme.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/providers/theme.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/router.dart b/boring_to_beautiful/step_05_a/lib/src/shared/router.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/router.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/router.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/views/adaptive_image_card.dart b/boring_to_beautiful/step_05_a/lib/src/shared/views/adaptive_image_card.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/views/adaptive_image_card.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/views/adaptive_image_card.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/views/adaptive_navigation.dart b/boring_to_beautiful/step_05_a/lib/src/shared/views/adaptive_navigation.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/views/adaptive_navigation.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/views/adaptive_navigation.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/views/adaptive_table.dart b/boring_to_beautiful/step_05_a/lib/src/shared/views/adaptive_table.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/views/adaptive_table.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/views/adaptive_table.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/views/article_content.dart b/boring_to_beautiful/step_05_a/lib/src/shared/views/article_content.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/views/article_content.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/views/article_content.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/views/bottom_bar.dart b/boring_to_beautiful/step_05_a/lib/src/shared/views/bottom_bar.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/views/bottom_bar.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/views/bottom_bar.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/views/brightness_toggle.dart b/boring_to_beautiful/step_05_a/lib/src/shared/views/brightness_toggle.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/views/brightness_toggle.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/views/brightness_toggle.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/views/center_row.dart b/boring_to_beautiful/step_05_a/lib/src/shared/views/center_row.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/views/center_row.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/views/center_row.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/views/clickable.dart b/boring_to_beautiful/step_05_a/lib/src/shared/views/clickable.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/views/clickable.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/views/clickable.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/views/events.dart b/boring_to_beautiful/step_05_a/lib/src/shared/views/events.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/views/events.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/views/events.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/views/hover_toggle.dart b/boring_to_beautiful/step_05_a/lib/src/shared/views/hover_toggle.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/views/hover_toggle.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/views/hover_toggle.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/views/hoverable_song_play_button.dart b/boring_to_beautiful/step_05_a/lib/src/shared/views/hoverable_song_play_button.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/views/hoverable_song_play_button.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/views/hoverable_song_play_button.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/views/image_card.dart b/boring_to_beautiful/step_05_a/lib/src/shared/views/image_card.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/views/image_card.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/views/image_card.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/views/image_clipper.dart b/boring_to_beautiful/step_05_a/lib/src/shared/views/image_clipper.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/views/image_clipper.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/views/image_clipper.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/views/image_tile.dart b/boring_to_beautiful/step_05_a/lib/src/shared/views/image_tile.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/views/image_tile.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/views/image_tile.dart
diff --git a/boring_to_beautiful/step_05/lib/src/shared/views/outlined_card.dart b/boring_to_beautiful/step_05_a/lib/src/shared/views/outlined_card.dart
similarity index 100%
rename from boring_to_beautiful/step_05/lib/src/shared/views/outlined_card.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/views/outlined_card.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/views/play_pause_listener.dart b/boring_to_beautiful/step_05_a/lib/src/shared/views/play_pause_listener.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/views/play_pause_listener.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/views/play_pause_listener.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/views/root_layout.dart b/boring_to_beautiful/step_05_a/lib/src/shared/views/root_layout.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/views/root_layout.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/views/root_layout.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/views/sidebar.dart b/boring_to_beautiful/step_05_a/lib/src/shared/views/sidebar.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/views/sidebar.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/views/sidebar.dart
diff --git a/boring_to_beautiful/final/lib/src/shared/views/views.dart b/boring_to_beautiful/step_05_a/lib/src/shared/views/views.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/shared/views/views.dart
rename to boring_to_beautiful/step_05_a/lib/src/shared/views/views.dart
diff --git a/boring_to_beautiful/final/lib/src/utils/adaptive_breakpoints.dart b/boring_to_beautiful/step_05_a/lib/src/utils/adaptive_breakpoints.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/utils/adaptive_breakpoints.dart
rename to boring_to_beautiful/step_05_a/lib/src/utils/adaptive_breakpoints.dart
diff --git a/boring_to_beautiful/final/lib/src/utils/adaptive_column.dart b/boring_to_beautiful/step_05_a/lib/src/utils/adaptive_column.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/utils/adaptive_column.dart
rename to boring_to_beautiful/step_05_a/lib/src/utils/adaptive_column.dart
diff --git a/boring_to_beautiful/final/lib/src/utils/adaptive_components.dart b/boring_to_beautiful/step_05_a/lib/src/utils/adaptive_components.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/utils/adaptive_components.dart
rename to boring_to_beautiful/step_05_a/lib/src/utils/adaptive_components.dart
diff --git a/boring_to_beautiful/final/lib/src/utils/adaptive_container.dart b/boring_to_beautiful/step_05_a/lib/src/utils/adaptive_container.dart
similarity index 100%
rename from boring_to_beautiful/final/lib/src/utils/adaptive_container.dart
rename to boring_to_beautiful/step_05_a/lib/src/utils/adaptive_container.dart
diff --git a/boring_to_beautiful/final/linux/.gitignore b/boring_to_beautiful/step_05_a/linux/.gitignore
similarity index 100%
rename from boring_to_beautiful/final/linux/.gitignore
rename to boring_to_beautiful/step_05_a/linux/.gitignore
diff --git a/boring_to_beautiful/final/linux/CMakeLists.txt b/boring_to_beautiful/step_05_a/linux/CMakeLists.txt
similarity index 100%
rename from boring_to_beautiful/final/linux/CMakeLists.txt
rename to boring_to_beautiful/step_05_a/linux/CMakeLists.txt
diff --git a/boring_to_beautiful/final/linux/flutter/CMakeLists.txt b/boring_to_beautiful/step_05_a/linux/flutter/CMakeLists.txt
similarity index 100%
rename from boring_to_beautiful/final/linux/flutter/CMakeLists.txt
rename to boring_to_beautiful/step_05_a/linux/flutter/CMakeLists.txt
diff --git a/boring_to_beautiful/final/linux/flutter/generated_plugin_registrant.cc b/boring_to_beautiful/step_05_a/linux/flutter/generated_plugin_registrant.cc
similarity index 100%
rename from boring_to_beautiful/final/linux/flutter/generated_plugin_registrant.cc
rename to boring_to_beautiful/step_05_a/linux/flutter/generated_plugin_registrant.cc
diff --git a/boring_to_beautiful/final/linux/flutter/generated_plugin_registrant.h b/boring_to_beautiful/step_05_a/linux/flutter/generated_plugin_registrant.h
similarity index 100%
rename from boring_to_beautiful/final/linux/flutter/generated_plugin_registrant.h
rename to boring_to_beautiful/step_05_a/linux/flutter/generated_plugin_registrant.h
diff --git a/boring_to_beautiful/final/linux/flutter/generated_plugins.cmake b/boring_to_beautiful/step_05_a/linux/flutter/generated_plugins.cmake
similarity index 100%
rename from boring_to_beautiful/final/linux/flutter/generated_plugins.cmake
rename to boring_to_beautiful/step_05_a/linux/flutter/generated_plugins.cmake
diff --git a/boring_to_beautiful/final/linux/runner/CMakeLists.txt b/boring_to_beautiful/step_05_a/linux/runner/CMakeLists.txt
similarity index 100%
rename from boring_to_beautiful/final/linux/runner/CMakeLists.txt
rename to boring_to_beautiful/step_05_a/linux/runner/CMakeLists.txt
diff --git a/boring_to_beautiful/final/linux/runner/main.cc b/boring_to_beautiful/step_05_a/linux/runner/main.cc
similarity index 100%
rename from boring_to_beautiful/final/linux/runner/main.cc
rename to boring_to_beautiful/step_05_a/linux/runner/main.cc
diff --git a/boring_to_beautiful/final/linux/runner/my_application.cc b/boring_to_beautiful/step_05_a/linux/runner/my_application.cc
similarity index 100%
rename from boring_to_beautiful/final/linux/runner/my_application.cc
rename to boring_to_beautiful/step_05_a/linux/runner/my_application.cc
diff --git a/boring_to_beautiful/final/linux/runner/my_application.h b/boring_to_beautiful/step_05_a/linux/runner/my_application.h
similarity index 100%
rename from boring_to_beautiful/final/linux/runner/my_application.h
rename to boring_to_beautiful/step_05_a/linux/runner/my_application.h
diff --git a/boring_to_beautiful/final/macos/.gitignore b/boring_to_beautiful/step_05_a/macos/.gitignore
similarity index 100%
rename from boring_to_beautiful/final/macos/.gitignore
rename to boring_to_beautiful/step_05_a/macos/.gitignore
diff --git a/boring_to_beautiful/final/macos/Flutter/Flutter-Debug.xcconfig b/boring_to_beautiful/step_05_a/macos/Flutter/Flutter-Debug.xcconfig
similarity index 100%
rename from boring_to_beautiful/final/macos/Flutter/Flutter-Debug.xcconfig
rename to boring_to_beautiful/step_05_a/macos/Flutter/Flutter-Debug.xcconfig
diff --git a/boring_to_beautiful/final/macos/Flutter/Flutter-Release.xcconfig b/boring_to_beautiful/step_05_a/macos/Flutter/Flutter-Release.xcconfig
similarity index 100%
rename from boring_to_beautiful/final/macos/Flutter/Flutter-Release.xcconfig
rename to boring_to_beautiful/step_05_a/macos/Flutter/Flutter-Release.xcconfig
diff --git a/boring_to_beautiful/final/macos/Flutter/GeneratedPluginRegistrant.swift b/boring_to_beautiful/step_05_a/macos/Flutter/GeneratedPluginRegistrant.swift
similarity index 100%
rename from boring_to_beautiful/final/macos/Flutter/GeneratedPluginRegistrant.swift
rename to boring_to_beautiful/step_05_a/macos/Flutter/GeneratedPluginRegistrant.swift
diff --git a/boring_to_beautiful/final/macos/Podfile b/boring_to_beautiful/step_05_a/macos/Podfile
similarity index 100%
rename from boring_to_beautiful/final/macos/Podfile
rename to boring_to_beautiful/step_05_a/macos/Podfile
diff --git a/boring_to_beautiful/final/macos/Runner.xcodeproj/project.pbxproj b/boring_to_beautiful/step_05_a/macos/Runner.xcodeproj/project.pbxproj
similarity index 93%
rename from boring_to_beautiful/final/macos/Runner.xcodeproj/project.pbxproj
rename to boring_to_beautiful/step_05_a/macos/Runner.xcodeproj/project.pbxproj
index 6ae862c37d..79fced16c3 100644
--- a/boring_to_beautiful/final/macos/Runner.xcodeproj/project.pbxproj
+++ b/boring_to_beautiful/step_05_a/macos/Runner.xcodeproj/project.pbxproj
@@ -21,14 +21,14 @@
/* End PBXAggregateTarget section */
/* Begin PBXBuildFile section */
+ 120C1A7E7D320A31C1211A4A /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AA208D76E7C609C5BAC5DE1C /* Pods_RunnerTests.framework */; };
331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C80D7294CF71000263BE5 /* RunnerTests.swift */; };
335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */; };
33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC10F02044A3C60003C045 /* AppDelegate.swift */; };
33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; };
33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; };
33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; };
- 6A705DC52900C471DF6E1EC6 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C4369DFC5152AD3CC9336DE1 /* Pods_Runner.framework */; };
- 9AEA2C669381F3905C501B66 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A2ED1AFEDE3E0824294F5C6C /* Pods_RunnerTests.framework */; };
+ E344FE031826102CEDE46647 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E265E576032EFCCB6AB10F89 /* Pods_Runner.framework */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
@@ -62,7 +62,7 @@
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
- 049E4603B0A09E05087E56FA /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = ""; };
+ 2BCC07C46EB4E01CE044DBB6 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; };
331C80D5294CF71000263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
331C80D7294CF71000263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = "