Skip to content

Commit ce79aba

Browse files
committedOct 3, 2019
Add assets and packages
1 parent 1c438ff commit ce79aba

File tree

5 files changed

+30
-3
lines changed

5 files changed

+30
-3
lines changed
 

‎assets/images/one.png

14.8 KB
Loading

‎ios/Runner.xcodeproj/project.pbxproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@
153153
TargetAttributes = {
154154
97C146ED1CF9000F007C117D = {
155155
CreatedOnToolsVersion = 7.3.1;
156+
DevelopmentTeam = 4KUZY6G2FC;
156157
LastSwiftMigration = 0910;
157158
};
158159
};
@@ -310,6 +311,7 @@
310311
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
311312
CLANG_ENABLE_MODULES = YES;
312313
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
314+
DEVELOPMENT_TEAM = 4KUZY6G2FC;
313315
ENABLE_BITCODE = NO;
314316
FRAMEWORK_SEARCH_PATHS = (
315317
"$(inherited)",
@@ -443,6 +445,7 @@
443445
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
444446
CLANG_ENABLE_MODULES = YES;
445447
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
448+
DEVELOPMENT_TEAM = 4KUZY6G2FC;
446449
ENABLE_BITCODE = NO;
447450
FRAMEWORK_SEARCH_PATHS = (
448451
"$(inherited)",
@@ -470,6 +473,7 @@
470473
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
471474
CLANG_ENABLE_MODULES = YES;
472475
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
476+
DEVELOPMENT_TEAM = 4KUZY6G2FC;
473477
ENABLE_BITCODE = NO;
474478
FRAMEWORK_SEARCH_PATHS = (
475479
"$(inherited)",
@@ -513,7 +517,6 @@
513517
defaultConfigurationName = Release;
514518
};
515519
/* End XCConfigurationList section */
516-
517520
};
518521
rootObject = 97C146E61CF9000F007C117D /* Project object */;
519522
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>IDEDidComputeMac32BitWarning</key>
6+
<true/>
7+
</dict>
8+
</plist>

‎pubspec.lock

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,13 @@ packages:
6060
url: "https://pub.dartlang.org"
6161
source: hosted
6262
version: "1.1.7"
63+
page_transition:
64+
dependency: "direct main"
65+
description:
66+
name: page_transition
67+
url: "https://pub.dartlang.org"
68+
source: hosted
69+
version: "1.1.4"
6370
path:
6471
dependency: transitive
6572
description:
@@ -81,6 +88,13 @@ packages:
8188
url: "https://pub.dartlang.org"
8289
source: hosted
8390
version: "2.0.5"
91+
simple_animations:
92+
dependency: "direct main"
93+
description:
94+
name: simple_animations
95+
url: "https://pub.dartlang.org"
96+
source: hosted
97+
version: "1.3.3"
8498
sky_engine:
8599
dependency: transitive
86100
description: flutter

‎pubspec.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ environment:
1919
dependencies:
2020
flutter:
2121
sdk: flutter
22+
simple_animations: ^1.1.3
23+
page_transition: ^1.1.4
2224

2325
# The following adds the Cupertino Icons font to your application.
2426
# Use with the CupertinoIcons class for iOS style icons.
@@ -41,8 +43,8 @@ flutter:
4143
uses-material-design: true
4244

4345
# To add assets to your application, add an assets section, like this:
44-
# assets:
45-
# - images/a_dot_burr.jpeg
46+
assets:
47+
- assets/images/
4648
# - images/a_dot_ham.jpeg
4749

4850
# An image asset can refer to one or more resolution-specific "variants", see

0 commit comments

Comments
 (0)
Please sign in to comment.