├── dribbledanimation ├── android │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── app │ │ ├── src │ │ │ └── main │ │ │ │ ├── res │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── login.jpg │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values │ │ │ │ │ └── styles.xml │ │ │ │ └── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dribbledanimation │ │ │ │ │ └── MainActivity.java │ │ │ │ └── AndroidManifest.xml │ │ └── build.gradle │ ├── .gitignore │ ├── settings.gradle │ ├── build.gradle │ ├── gradlew.bat │ └── gradlew ├── ios │ ├── Flutter │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── AppFrameworkInfo.plist │ ├── Runner │ │ ├── AppDelegate.h │ │ ├── Assets.xcassets │ │ │ ├── LaunchImage.imageset │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ ├── README.md │ │ │ │ └── Contents.json │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ │ └── Contents.json │ │ ├── main.m │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ ├── Main.storyboard │ │ │ └── LaunchScreen.storyboard │ │ └── Info.plist │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ ├── Runner.xcodeproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ └── project.pbxproj │ └── .gitignore ├── lib │ ├── main.dart │ ├── Screens │ │ ├── Login │ │ │ ├── styles.dart │ │ │ ├── index.dart │ │ │ └── loginAnimation.dart │ │ └── Home │ │ │ ├── styles.dart │ │ │ ├── data.dart │ │ │ ├── homeAnimation.dart │ │ │ ├── listBuilder.dart │ │ │ ├── index.dart │ │ │ └── customscroll.dart │ ├── Components │ │ ├── WhiteTick.dart │ │ ├── SignUpLink.dart │ │ ├── AddButton.dart │ │ ├── SignInButton.dart │ │ ├── FadeContainer.dart │ │ ├── Form.dart │ │ ├── InputFields.dart │ │ ├── MonthView.dart │ │ ├── Profile_Notification.dart │ │ ├── Calender.dart │ │ ├── List.dart │ │ ├── CalenderCell.dart │ │ ├── ListStack.dart │ │ ├── ListViewContainer.dart │ │ └── HomeTopView.dart │ └── Routes.dart ├── assets │ ├── tick.png │ ├── home.jpeg │ ├── login.jpg │ └── avatars │ │ ├── avatar-1.jpg │ │ ├── avatar-2.jpg │ │ ├── avatar-3.jpg │ │ ├── avatar-4.jpg │ │ ├── avatar-5.jpg │ │ ├── avatar-6.jpg │ │ ├── avatar-7.gif │ │ └── default-avatar.jpg ├── ScreenGif │ └── Login_Animation.gif ├── .gitignore ├── README.md ├── .metadata ├── dribbledanimation.iml ├── test │ └── widget_test.dart ├── dribbledanimation_android.iml ├── pubspec.yaml └── pubspec.lock └── README.md /dribbledanimation/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /dribbledanimation/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /dribbledanimation/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /dribbledanimation/lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'package:dribbledanimation/Routes.dart'; 2 | 3 | void main() { 4 | new Routes(); 5 | } 6 | -------------------------------------------------------------------------------- /dribbledanimation/assets/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/assets/tick.png -------------------------------------------------------------------------------- /dribbledanimation/assets/home.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/assets/home.jpeg -------------------------------------------------------------------------------- /dribbledanimation/assets/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/assets/login.jpg -------------------------------------------------------------------------------- /dribbledanimation/assets/avatars/avatar-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/assets/avatars/avatar-1.jpg -------------------------------------------------------------------------------- /dribbledanimation/assets/avatars/avatar-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/assets/avatars/avatar-2.jpg -------------------------------------------------------------------------------- /dribbledanimation/assets/avatars/avatar-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/assets/avatars/avatar-3.jpg -------------------------------------------------------------------------------- /dribbledanimation/assets/avatars/avatar-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/assets/avatars/avatar-4.jpg -------------------------------------------------------------------------------- /dribbledanimation/assets/avatars/avatar-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/assets/avatars/avatar-5.jpg -------------------------------------------------------------------------------- /dribbledanimation/assets/avatars/avatar-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/assets/avatars/avatar-6.jpg -------------------------------------------------------------------------------- /dribbledanimation/assets/avatars/avatar-7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/assets/avatars/avatar-7.gif -------------------------------------------------------------------------------- /dribbledanimation/ScreenGif/Login_Animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/ScreenGif/Login_Animation.gif -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /dribbledanimation/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .atom/ 3 | .idea 4 | .vscode/ 5 | .packages 6 | .pub/ 7 | build/ 8 | ios/.generated/ 9 | packages 10 | .flutter-plugins 11 | -------------------------------------------------------------------------------- /dribbledanimation/assets/avatars/default-avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/assets/avatars/default-avatar.jpg -------------------------------------------------------------------------------- /dribbledanimation/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /dribbledanimation/android/app/src/main/res/mipmap-mdpi/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/android/app/src/main/res/mipmap-mdpi/login.jpg -------------------------------------------------------------------------------- /dribbledanimation/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /dribbledanimation/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /dribbledanimation/README.md: -------------------------------------------------------------------------------- 1 | # dribbledanimation 2 | 3 | A new Flutter project. 4 | 5 | ## Getting Started 6 | 7 | For help getting started with Flutter, view our online 8 | [documentation](https://flutter.io/). 9 | -------------------------------------------------------------------------------- /dribbledanimation/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dribbledanimation/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dribbledanimation/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dribbledanimation/android/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | *.class 3 | .gradle 4 | /local.properties 5 | /.idea/workspace.xml 6 | /.idea/libraries 7 | .DS_Store 8 | /build 9 | /captures 10 | GeneratedPluginRegistrant.java 11 | -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekruchika/FlutterDribble-Animation/HEAD/dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char * argv[]) { 6 | @autoreleasepool { 7 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /dribbledanimation/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip 7 | -------------------------------------------------------------------------------- /dribbledanimation/.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: 3b84503403563ba77cf5388b98a89e39f2c2151e 8 | channel: dev 9 | -------------------------------------------------------------------------------- /dribbledanimation/lib/Screens/Login/styles.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | DecorationImage backgroundImage = new DecorationImage( 4 | image: new ExactAssetImage('assets/login.jpg'), 5 | fit: BoxFit.cover, 6 | ); 7 | 8 | DecorationImage tick = new DecorationImage( 9 | image: new ExactAssetImage('assets/tick.png'), 10 | fit: BoxFit.cover, 11 | ); 12 | -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- 1 | # Launch Screen Assets 2 | 3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory. 4 | 5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. -------------------------------------------------------------------------------- /dribbledanimation/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /dribbledanimation/lib/Components/WhiteTick.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class Tick extends StatelessWidget { 4 | final DecorationImage image; 5 | Tick({this.image}); 6 | @override 7 | Widget build(BuildContext context) { 8 | return (new Container( 9 | width: 250.0, 10 | height: 250.0, 11 | alignment: Alignment.center, 12 | decoration: new BoxDecoration( 13 | image: image, 14 | ), 15 | )); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- 1 | #include "AppDelegate.h" 2 | #include "GeneratedPluginRegistrant.h" 3 | 4 | @implementation AppDelegate 5 | 6 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 7 | [GeneratedPluginRegistrant registerWithRegistry:self]; 8 | // Override point for customization after application launch. 9 | return [super application:application didFinishLaunchingWithOptions:launchOptions]; 10 | } 11 | 12 | @end 13 | -------------------------------------------------------------------------------- /dribbledanimation/android/app/src/main/java/com/example/dribbledanimation/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.example.dribbledanimation; 2 | 3 | import android.os.Bundle; 4 | 5 | import io.flutter.app.FlutterActivity; 6 | import io.flutter.plugins.GeneratedPluginRegistrant; 7 | 8 | public class MainActivity extends FlutterActivity { 9 | @Override 10 | protected void onCreate(Bundle savedInstanceState) { 11 | super.onCreate(savedInstanceState); 12 | GeneratedPluginRegistrant.registerWith(this); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /dribbledanimation/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "LaunchImage.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "LaunchImage@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "LaunchImage@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /dribbledanimation/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | 3 | def flutterProjectRoot = rootProject.projectDir.parentFile.toPath() 4 | 5 | def plugins = new Properties() 6 | def pluginsFile = new File(flutterProjectRoot.toFile(), '.flutter-plugins') 7 | if (pluginsFile.exists()) { 8 | pluginsFile.withReader('UTF-8') { reader -> plugins.load(reader) } 9 | } 10 | 11 | plugins.each { name, path -> 12 | def pluginDirectory = flutterProjectRoot.resolve(path).resolve('android').toFile() 13 | include ":$name" 14 | project(":$name").projectDir = pluginDirectory 15 | } 16 | -------------------------------------------------------------------------------- /dribbledanimation/android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | repositories { 3 | google() 4 | jcenter() 5 | } 6 | 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:3.0.1' 9 | } 10 | } 11 | 12 | allprojects { 13 | repositories { 14 | google() 15 | jcenter() 16 | } 17 | } 18 | 19 | rootProject.buildDir = '../build' 20 | subprojects { 21 | project.buildDir = "${rootProject.buildDir}/${project.name}" 22 | } 23 | subprojects { 24 | project.evaluationDependsOn(':app') 25 | } 26 | 27 | task clean(type: Delete) { 28 | delete rootProject.buildDir 29 | } 30 | -------------------------------------------------------------------------------- /dribbledanimation/ios/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .vagrant/ 3 | .sconsign.dblite 4 | .svn/ 5 | 6 | .DS_Store 7 | *.swp 8 | profile 9 | 10 | DerivedData/ 11 | build/ 12 | GeneratedPluginRegistrant.h 13 | GeneratedPluginRegistrant.m 14 | 15 | *.pbxuser 16 | *.mode1v3 17 | *.mode2v3 18 | *.perspectivev3 19 | 20 | !default.pbxuser 21 | !default.mode1v3 22 | !default.mode2v3 23 | !default.perspectivev3 24 | 25 | xcuserdata 26 | 27 | *.moved-aside 28 | 29 | *.pyc 30 | *sync/ 31 | Icon? 32 | .tags* 33 | 34 | /Flutter/app.flx 35 | /Flutter/app.zip 36 | /Flutter/flutter_assets/ 37 | /Flutter/App.framework 38 | /Flutter/Flutter.framework 39 | /Flutter/Generated.xcconfig 40 | /ServiceDefinitions.json 41 | 42 | Pods/ 43 | -------------------------------------------------------------------------------- /dribbledanimation/lib/Components/SignUpLink.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class SignUp extends StatelessWidget { 4 | SignUp(); 5 | @override 6 | Widget build(BuildContext context) { 7 | return (new FlatButton( 8 | padding: const EdgeInsets.only( 9 | top: 160.0, 10 | ), 11 | onPressed: null, 12 | child: new Text( 13 | "Don't have an account? Sign Up", 14 | textAlign: TextAlign.center, 15 | overflow: TextOverflow.ellipsis, 16 | softWrap: true, 17 | style: new TextStyle( 18 | fontWeight: FontWeight.w300, 19 | letterSpacing: 0.5, 20 | color: Colors.white, 21 | fontSize: 12.0), 22 | ), 23 | )); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /dribbledanimation/lib/Components/AddButton.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class AddButton extends StatelessWidget { 4 | final Animation buttonGrowAnimation; 5 | AddButton({this.buttonGrowAnimation}); 6 | @override 7 | Widget build(BuildContext context) { 8 | return (new Container( 9 | width: buttonGrowAnimation.value * 60, 10 | height: buttonGrowAnimation.value * 60, 11 | alignment: FractionalOffset.center, 12 | decoration: new BoxDecoration( 13 | color: const Color.fromRGBO(247, 64, 106, 1.0), 14 | shape: BoxShape.circle), 15 | child: new Icon( 16 | Icons.add, 17 | size: buttonGrowAnimation.value * 40.0, 18 | color: Colors.white, 19 | ), 20 | )); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /dribbledanimation/lib/Components/SignInButton.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class SignIn extends StatelessWidget { 4 | SignIn(); 5 | @override 6 | Widget build(BuildContext context) { 7 | return (new Container( 8 | width: 320.0, 9 | height: 60.0, 10 | alignment: FractionalOffset.center, 11 | decoration: new BoxDecoration( 12 | color: const Color.fromRGBO(247, 64, 106, 1.0), 13 | borderRadius: new BorderRadius.all(const Radius.circular(30.0)), 14 | ), 15 | child: new Text( 16 | "Sign In", 17 | style: new TextStyle( 18 | color: Colors.white, 19 | fontSize: 20.0, 20 | fontWeight: FontWeight.w300, 21 | letterSpacing: 0.3, 22 | ), 23 | ), 24 | )); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /dribbledanimation/lib/Components/FadeContainer.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class FadeBox extends StatelessWidget { 4 | final Animation containerGrowAnimation; 5 | final Animation fadeScreenAnimation; 6 | FadeBox({this.containerGrowAnimation, this.fadeScreenAnimation}); 7 | @override 8 | Widget build(BuildContext context) { 9 | Size screenSize = MediaQuery.of(context).size; 10 | return (new Hero( 11 | tag: "fade", 12 | child: new Container( 13 | width: containerGrowAnimation.value < 1 ? screenSize.width : 0.0, 14 | height: containerGrowAnimation.value < 1 ? screenSize.height : 0.0, 15 | decoration: new BoxDecoration( 16 | color: fadeScreenAnimation.value, 17 | ), 18 | ))); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /dribbledanimation/dribbledanimation.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /dribbledanimation/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | App 9 | CFBundleIdentifier 10 | io.flutter.flutter.app 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | App 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | UIRequiredDeviceCapabilities 24 | 25 | arm64 26 | 27 | MinimumOSVersion 28 | 8.0 29 | 30 | 31 | -------------------------------------------------------------------------------- /dribbledanimation/lib/Components/Form.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import './InputFields.dart'; 3 | 4 | class FormContainer extends StatelessWidget { 5 | @override 6 | Widget build(BuildContext context) { 7 | return (new Container( 8 | margin: new EdgeInsets.symmetric(horizontal: 20.0), 9 | child: new Column( 10 | mainAxisAlignment: MainAxisAlignment.spaceEvenly, 11 | children: [ 12 | new Form( 13 | child: new Column( 14 | mainAxisAlignment: MainAxisAlignment.spaceAround, 15 | children: [ 16 | new InputFieldArea( 17 | hint: "Username", 18 | obscure: false, 19 | icon: Icons.person_outline, 20 | ), 21 | new InputFieldArea( 22 | hint: "Password", 23 | obscure: true, 24 | icon: Icons.lock_outline, 25 | ), 26 | ], 27 | )), 28 | ], 29 | ), 30 | )); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /dribbledanimation/test/widget_test.dart: -------------------------------------------------------------------------------- 1 | // This is a basic Flutter widget test. 2 | // To perform an interaction with a widget in your test, use the WidgetTester utility that Flutter 3 | // provides. For example, you can send tap and scroll gestures. You can also use WidgetTester to 4 | // find child widgets in the widget tree, read text, and verify that the values of widget properties 5 | // are correct. 6 | 7 | import 'package:flutter/material.dart'; 8 | import 'package:flutter_test/flutter_test.dart'; 9 | 10 | import 'package:dribbledanimation/main.dart'; 11 | 12 | void main() { 13 | testWidgets('Counter increments smoke test', (WidgetTester tester) async { 14 | // Build our app and trigger a frame. 15 | await tester.pumpWidget(new MyApp()); 16 | 17 | // Verify that our counter starts at 0. 18 | expect(find.text('0'), findsOneWidget); 19 | expect(find.text('1'), findsNothing); 20 | 21 | // Tap the '+' icon and trigger a frame. 22 | await tester.tap(find.byIcon(Icons.add)); 23 | await tester.pump(); 24 | 25 | // Verify that our counter has incremented. 26 | expect(find.text('0'), findsNothing); 27 | expect(find.text('1'), findsOneWidget); 28 | }); 29 | } 30 | -------------------------------------------------------------------------------- /dribbledanimation/lib/Components/InputFields.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class InputFieldArea extends StatelessWidget { 4 | final String hint; 5 | final bool obscure; 6 | final IconData icon; 7 | InputFieldArea({this.hint, this.obscure, this.icon}); 8 | @override 9 | Widget build(BuildContext context) { 10 | return (new Container( 11 | decoration: new BoxDecoration( 12 | border: new Border( 13 | bottom: new BorderSide( 14 | width: 0.5, 15 | color: Colors.white24, 16 | ), 17 | ), 18 | ), 19 | child: new TextFormField( 20 | obscureText: obscure, 21 | style: const TextStyle( 22 | color: Colors.white, 23 | ), 24 | decoration: new InputDecoration( 25 | icon: new Icon( 26 | icon, 27 | color: Colors.white, 28 | ), 29 | border: InputBorder.none, 30 | hintText: hint, 31 | hintStyle: const TextStyle(color: Colors.white, fontSize: 15.0), 32 | contentPadding: const EdgeInsets.only( 33 | top: 30.0, right: 30.0, bottom: 30.0, left: 5.0), 34 | ), 35 | ), 36 | )); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /dribbledanimation/lib/Components/MonthView.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class MonthView extends StatelessWidget { 4 | final VoidCallback selectbackward; 5 | final VoidCallback selectforward; 6 | final String month; 7 | MonthView({this.selectbackward, this.selectforward, this.month}); 8 | @override 9 | Widget build(BuildContext context) { 10 | return (new Row( 11 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 12 | children: [ 13 | new IconButton( 14 | icon: new Icon( 15 | Icons.arrow_back_ios, 16 | color: Colors.white, 17 | ), 18 | onPressed: selectbackward, 19 | ), 20 | new Text( 21 | month.toUpperCase(), 22 | textAlign: TextAlign.center, 23 | style: new TextStyle( 24 | fontSize: 18.0, 25 | letterSpacing: 1.2, 26 | fontWeight: FontWeight.w300, 27 | color: Colors.white), 28 | ), 29 | new IconButton( 30 | icon: new Icon( 31 | Icons.arrow_forward_ios, 32 | color: Colors.white, 33 | ), 34 | onPressed: selectforward, 35 | ), 36 | ], 37 | )); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /dribbledanimation/lib/Routes.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:dribbledanimation/Screens/Login/index.dart'; 3 | import 'package:dribbledanimation/Screens/Home/index.dart'; 4 | 5 | class Routes { 6 | Routes() { 7 | runApp(new MaterialApp( 8 | title: "Dribble Animation App", 9 | debugShowCheckedModeBanner: false, 10 | home: new LoginScreen(), 11 | onGenerateRoute: (RouteSettings settings) { 12 | switch (settings.name) { 13 | case '/login': 14 | return new MyCustomRoute( 15 | builder: (_) => new LoginScreen(), 16 | settings: settings, 17 | ); 18 | 19 | case '/home': 20 | return new MyCustomRoute( 21 | builder: (_) => new HomeScreen(), 22 | settings: settings, 23 | ); 24 | } 25 | }, 26 | )); 27 | } 28 | } 29 | 30 | class MyCustomRoute extends MaterialPageRoute { 31 | MyCustomRoute({WidgetBuilder builder, RouteSettings settings}) 32 | : super(builder: builder, settings: settings); 33 | 34 | @override 35 | Widget buildTransitions(BuildContext context, Animation animation, 36 | Animation secondaryAnimation, Widget child) { 37 | if (settings.isInitialRoute) return child; 38 | return new FadeTransition(opacity: animation, child: child); 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /dribbledanimation/lib/Components/Profile_Notification.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class ProfileNotification extends StatelessWidget { 4 | final Animation containerGrowAnimation; 5 | final DecorationImage profileImage; 6 | ProfileNotification({this.containerGrowAnimation, this.profileImage}); 7 | @override 8 | Widget build(BuildContext context) { 9 | return (new Container( 10 | child: new Column( 11 | children: [ 12 | new Container( 13 | width: containerGrowAnimation.value * 35, 14 | height: containerGrowAnimation.value * 35, 15 | margin: new EdgeInsets.only(left: 80.0), 16 | child: new Center( 17 | child: new Text("3", 18 | style: new TextStyle( 19 | fontSize: containerGrowAnimation.value * 15, 20 | fontWeight: FontWeight.w400, 21 | color: Colors.white)), 22 | ), 23 | decoration: new BoxDecoration( 24 | shape: BoxShape.circle, 25 | color: const Color.fromRGBO(80, 210, 194, 1.0), 26 | )), 27 | ], 28 | ), 29 | width: containerGrowAnimation.value * 120, 30 | height: containerGrowAnimation.value * 120, 31 | decoration: new BoxDecoration( 32 | shape: BoxShape.circle, 33 | image: profileImage, 34 | ))); 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /dribbledanimation/dribbledanimation_android.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /dribbledanimation/lib/Screens/Home/styles.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | DecorationImage backgroundImage = new DecorationImage( 4 | image: new ExactAssetImage('assets/home.jpeg'), 5 | fit: BoxFit.cover, 6 | ); 7 | 8 | DecorationImage profileImage = new DecorationImage( 9 | image: new ExactAssetImage('assets/avatars/default-avatar.jpg'), 10 | fit: BoxFit.cover, 11 | ); 12 | 13 | DecorationImage timelineImage = new DecorationImage( 14 | image: new ExactAssetImage('assets/timeline.jpg'), 15 | fit: BoxFit.cover, 16 | ); 17 | DecorationImage avatar1 = new DecorationImage( 18 | image: new ExactAssetImage('assets/avatars/avatar-1.jpg'), 19 | fit: BoxFit.cover, 20 | ); 21 | DecorationImage avatar2 = new DecorationImage( 22 | image: new ExactAssetImage('assets/avatars/avatar-2.jpg'), 23 | fit: BoxFit.cover, 24 | ); 25 | DecorationImage avatar3 = new DecorationImage( 26 | image: new ExactAssetImage('assets/avatars/avatar-3.jpg'), 27 | fit: BoxFit.cover, 28 | ); 29 | DecorationImage avatar4 = new DecorationImage( 30 | image: new ExactAssetImage('assets/avatars/avatar-4.jpg'), 31 | fit: BoxFit.cover, 32 | ); 33 | DecorationImage avatar5 = new DecorationImage( 34 | image: new ExactAssetImage('assets/avatars/avatar-5.jpg'), 35 | fit: BoxFit.cover, 36 | ); 37 | DecorationImage avatar6 = new DecorationImage( 38 | image: new ExactAssetImage('assets/avatars/avatar-6.jpg'), 39 | fit: BoxFit.cover, 40 | ); 41 | 42 | // DecorationImage profileImage = new DecorationImage( 43 | // image: new ExactAssetImage('assets/avatars/avatar-7.gif'), 44 | // fit: BoxFit.cover, 45 | // ); 46 | -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /dribbledanimation/lib/Components/Calender.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'CalenderCell.dart'; 3 | 4 | class Calender extends StatelessWidget { 5 | final EdgeInsets margin; 6 | final List week = ["SUN", "MON", "TUE", "WED", "THU", "FRI", "SAT"]; 7 | final List arrayDay = []; 8 | Calender({this.margin}); 9 | 10 | int totaldays(int month) { 11 | if (month == 2) 12 | return (28); 13 | else if (month == 4 || month == 6 || month == 9 || month == 11) 14 | return (30); 15 | else 16 | return (31); 17 | } 18 | 19 | @override 20 | Widget build(BuildContext context) { 21 | int element = new DateTime.now().day - new DateTime.now().weekday; 22 | int totalDay = totaldays(new DateTime.now().month); 23 | for (var i = 0; i < 7; i++) { 24 | if (element > totalDay) element = 1; 25 | arrayDay.add(element); 26 | element++; 27 | } 28 | var i = -1; 29 | return (new Container( 30 | margin: margin, 31 | alignment: Alignment.center, 32 | padding: new EdgeInsets.only(top: 20.0), 33 | decoration: new BoxDecoration( 34 | color: Colors.white, 35 | border: new Border( 36 | bottom: new BorderSide( 37 | width: 1.0, color: const Color.fromRGBO(204, 204, 204, 1.0)), 38 | ), 39 | ), 40 | child: new Row( 41 | mainAxisAlignment: MainAxisAlignment.spaceEvenly, 42 | children: week.map((String week) { 43 | ++i; 44 | return new CalenderCell( 45 | week: week, 46 | day: arrayDay[i].toString(), 47 | today: arrayDay[i] != new DateTime.now().day ? false : true); 48 | }).toList()), 49 | )); 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # Flutter Login Animation 3 | 4 | A new open-source Flutter project that enables the developer to quickly get started with the Flutter animation and application development. I will be taking you through the steps to implement smooth animations in your Flutter Login Animation app with two screens in my [medium article](https://blog.geekyants.com/flutter-login-animation-ab3e6ed4bd19). Here’s a GIF that shows a Flutter app that I created. It is a rebuild version of a UI design that I came across on [Dribbble](https://dribbble.com/shots/1945593-Login-Home-Screen). 5 | 6 | This project contains the basic features of Flutter Animation that are required to build an amazing Flutter application. 7 | 8 | # Demo 9 | ![Demo](https://github.com/geekruchika/FlutterDribble-Animation/blob/master/dribbledanimation/ScreenGif/Login_Animation.gif) 10 | 11 | ## Getting Started 12 | **Note:** Make sure your Flutter environment is setup. 13 | 14 | #### Installation 15 | 16 | In the command terminal, run the following commands: 17 | 18 | $ git clone https://github.com/geekruchika/FlutterDribble-Animation 19 | $ cd FlutterDribble-Animation/dribbledanimation 20 | $ flutter run 21 | 22 | # Simulate for iOS 23 | #### Method One 24 | 25 | Open the project in Xcode from ios/Runner.xcodeproj. 26 | Hit the play button. 27 | 28 | #### Method Two 29 | 30 | Run the following command in your terminal. 31 | $ open -a Simulator 32 | $ flutter run 33 | 34 | # Simulate for Android 35 | 36 | Make sure you have an Android emulator installed and running. 37 | Run the following command in your terminal. 38 | $ flutter run 39 | 40 | ##### Check out Flutter’s online [documentation](http://flutter.io/) for help getting start with your Flutter Animation project. -------------------------------------------------------------------------------- /dribbledanimation/android/app/build.gradle: -------------------------------------------------------------------------------- 1 | def localProperties = new Properties() 2 | def localPropertiesFile = rootProject.file('local.properties') 3 | if (localPropertiesFile.exists()) { 4 | localPropertiesFile.withReader('UTF-8') { reader -> 5 | localProperties.load(reader) 6 | } 7 | } 8 | 9 | def flutterRoot = localProperties.getProperty('flutter.sdk') 10 | if (flutterRoot == null) { 11 | throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") 12 | } 13 | 14 | apply plugin: 'com.android.application' 15 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" 16 | 17 | android { 18 | compileSdkVersion 27 19 | 20 | lintOptions { 21 | disable 'InvalidPackage' 22 | } 23 | 24 | defaultConfig { 25 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). 26 | applicationId "com.example.dribbledanimation" 27 | minSdkVersion 16 28 | targetSdkVersion 27 29 | versionCode 1 30 | versionName "1.0" 31 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 32 | } 33 | 34 | buildTypes { 35 | release { 36 | // TODO: Add your own signing config for the release build. 37 | // Signing with the debug keys for now, so `flutter run --release` works. 38 | signingConfig signingConfigs.debug 39 | } 40 | } 41 | } 42 | 43 | flutter { 44 | source '../..' 45 | } 46 | 47 | dependencies { 48 | testImplementation 'junit:junit:4.12' 49 | androidTestImplementation 'com.android.support.test:runner:1.0.1' 50 | androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1' 51 | } 52 | -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | dribbledanimation 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | arm64 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | UISupportedInterfaceOrientations~ipad 40 | 41 | UIInterfaceOrientationPortrait 42 | UIInterfaceOrientationPortraitUpsideDown 43 | UIInterfaceOrientationLandscapeLeft 44 | UIInterfaceOrientationLandscapeRight 45 | 46 | UIViewControllerBasedStatusBarAppearance 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /dribbledanimation/lib/Screens/Home/data.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'styles.dart'; 3 | 4 | class RowBoxData { 5 | String title; 6 | String subtitle; 7 | DecorationImage image; 8 | RowBoxData({this.subtitle, this.title, this.image}); 9 | } 10 | 11 | class DataListBuilder { 12 | List rowItemList = new List(); 13 | RowBoxData row1 = new RowBoxData( 14 | title: "Catch up with Tom", 15 | subtitle: "5 - 6pm Hangouts", 16 | image: avatar2); 17 | RowBoxData row2 = new RowBoxData( 18 | title: "Yoga classes with Emily", 19 | subtitle: "7 - 8am Workout", 20 | image: avatar6); 21 | RowBoxData row3 = new RowBoxData( 22 | title: "Breakfast with Harry", subtitle: "9 - 10am ", image: avatar1); 23 | RowBoxData row4 = new RowBoxData( 24 | title: "Meet Pheobe ", subtitle: "12 - 1pm Meeting", image: avatar5); 25 | RowBoxData row5 = new RowBoxData( 26 | title: "Lunch with Janet and friends", 27 | subtitle: "2 - 3pm ", 28 | image: avatar4); 29 | RowBoxData row6 = new RowBoxData( 30 | title: "Catch up with Tom", 31 | subtitle: "5 - 6pm Hangouts", 32 | image: avatar2); 33 | RowBoxData row7 = new RowBoxData( 34 | title: "Party at Hard Rock", 35 | subtitle: "8 - 12 Pub and Restaurant", 36 | image: avatar3); 37 | RowBoxData row8 = new RowBoxData( 38 | title: "Yoga classes with Emily", 39 | subtitle: "7 - 8am Workout", 40 | image: avatar6); 41 | 42 | DataListBuilder() { 43 | rowItemList.add(row1); 44 | rowItemList.add(row2); 45 | rowItemList.add(row3); 46 | rowItemList.add(row4); 47 | rowItemList.add(row5); 48 | rowItemList.add(row6); 49 | rowItemList.add(row7); 50 | rowItemList.add(row8); 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /dribbledanimation/lib/Components/List.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class ListData extends StatelessWidget { 4 | final EdgeInsets margin; 5 | final double width; 6 | final String title; 7 | final String subtitle; 8 | final DecorationImage image; 9 | ListData({this.margin, this.subtitle, this.title, this.width, this.image}); 10 | @override 11 | Widget build(BuildContext context) { 12 | return (new Container( 13 | alignment: Alignment.center, 14 | margin: margin, 15 | width: width, 16 | decoration: new BoxDecoration( 17 | color: Colors.white, 18 | border: new Border( 19 | top: new BorderSide( 20 | width: 1.0, color: const Color.fromRGBO(204, 204, 204, 0.3)), 21 | bottom: new BorderSide( 22 | width: 1.0, color: const Color.fromRGBO(204, 204, 204, 0.3)), 23 | ), 24 | ), 25 | child: new Row( 26 | children: [ 27 | new Container( 28 | margin: new EdgeInsets.only( 29 | left: 20.0, top: 10.0, bottom: 10.0, right: 20.0), 30 | width: 60.0, 31 | height: 60.0, 32 | decoration: 33 | new BoxDecoration(shape: BoxShape.circle, image: image)), 34 | new Column( 35 | crossAxisAlignment: CrossAxisAlignment.start, 36 | children: [ 37 | new Text( 38 | title, 39 | style: 40 | new TextStyle(fontSize: 18.0, fontWeight: FontWeight.w400), 41 | ), 42 | new Padding( 43 | padding: new EdgeInsets.only(top: 5.0), 44 | child: new Text( 45 | subtitle, 46 | style: new TextStyle( 47 | color: Colors.grey, 48 | fontSize: 14.0, 49 | fontWeight: FontWeight.w300), 50 | ), 51 | ) 52 | ], 53 | ) 54 | ], 55 | ), 56 | )); 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /dribbledanimation/lib/Components/CalenderCell.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class CalenderCell extends StatelessWidget { 4 | final String week; 5 | final String day; 6 | final bool today; 7 | CalenderCell({this.week, this.day, this.today}); 8 | @override 9 | Widget build(BuildContext context) { 10 | return (new Column( 11 | crossAxisAlignment: CrossAxisAlignment.center, 12 | children: [ 13 | new Text( 14 | week, 15 | style: new TextStyle( 16 | color: const Color.fromRGBO(204, 204, 204, 1.0), 17 | fontSize: 12.0, 18 | fontWeight: FontWeight.w400), 19 | ), 20 | new Padding( 21 | padding: new EdgeInsets.only(top: 10.0, bottom: 5.0), 22 | child: new Container( 23 | width: 35.0, 24 | height: 35.0, 25 | alignment: Alignment.center, 26 | decoration: new BoxDecoration( 27 | shape: BoxShape.circle, 28 | color: today 29 | ? const Color.fromRGBO(204, 204, 204, 0.3) 30 | : Colors.transparent), 31 | child: new Column( 32 | mainAxisAlignment: MainAxisAlignment.center, 33 | children: [ 34 | new Text( 35 | day, 36 | style: new TextStyle( 37 | fontSize: 12.0, fontWeight: FontWeight.w400), 38 | ), 39 | today 40 | ? new Container( 41 | padding: new EdgeInsets.only(top: 3.0), 42 | width: 3.0, 43 | height: 3.0, 44 | decoration: new BoxDecoration( 45 | shape: BoxShape.circle, 46 | color: const Color.fromRGBO(247, 64, 106, 1.0)), 47 | ) 48 | : new Container() 49 | ], 50 | )), 51 | ) 52 | ], 53 | )); 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /dribbledanimation/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 8 | 9 | 10 | 15 | 19 | 26 | 30 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /dribbledanimation/pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: dribbledanimation 2 | description: A new Flutter project. 3 | 4 | dependencies: 5 | flutter: 6 | sdk: flutter 7 | 8 | # The following adds the Cupertino Icons font to your application. 9 | # Use with the CupertinoIcons class for iOS style icons. 10 | cupertino_icons: ^0.1.0 11 | intl: "^0.15.2" 12 | 13 | dev_dependencies: 14 | flutter_test: 15 | sdk: flutter 16 | 17 | 18 | # For information on the generic Dart part of this file, see the 19 | # following page: https://www.dartlang.org/tools/pub/pubspec 20 | 21 | # The following section is specific to Flutter. 22 | flutter: 23 | 24 | # The following line ensures that the Material Icons font is 25 | # included with your application, so that you can use the icons in 26 | # the material Icons class. 27 | uses-material-design: true 28 | 29 | # To add assets to your application, add an assets section, like this: 30 | assets: 31 | 32 | - assets/login.jpg 33 | - assets/home.jpeg 34 | - assets/tick.png 35 | - assets/avatars/avatar-1.jpg 36 | - assets/avatars/avatar-2.jpg 37 | - assets/avatars/avatar-3.jpg 38 | - assets/avatars/avatar-4.jpg 39 | - assets/avatars/avatar-5.jpg 40 | - assets/avatars/avatar-6.jpg 41 | - assets/avatars/avatar-7.gif 42 | - assets/avatars/default-avatar.jpg 43 | # - images/a_dot_burr.jpeg 44 | # - images/a_dot_ham.jpeg 45 | 46 | # An image asset can refer to one or more resolution-specific "variants", see 47 | # https://flutter.io/assets-and-images/#resolution-aware. 48 | 49 | # For details regarding adding assets from package dependencies, see 50 | # https://flutter.io/assets-and-images/#from-packages 51 | 52 | # To add custom fonts to your application, add a fonts section here, 53 | # in this "flutter" section. Each entry in this list should have a 54 | # "family" key with the font family name, and a "fonts" key with a 55 | # list giving the asset and other descriptors for the font. For 56 | # example: 57 | # fonts: 58 | # - family: Schyler 59 | # fonts: 60 | # - asset: fonts/Schyler-Regular.ttf 61 | # - asset: fonts/Schyler-Italic.ttf 62 | # style: italic 63 | # - family: Trajan Pro 64 | # fonts: 65 | # - asset: fonts/TrajanPro.ttf 66 | # - asset: fonts/TrajanPro_Bold.ttf 67 | # weight: 700 68 | # 69 | # For details regarding fonts from package dependencies, 70 | # see https://flutter.io/custom-fonts/#from-packages 71 | -------------------------------------------------------------------------------- /dribbledanimation/lib/Components/ListStack.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import '../Screens/Home/data.dart'; 3 | 4 | class ListData extends StatelessWidget { 5 | final EdgeInsets margin; 6 | final index; 7 | final double width; 8 | final String title; 9 | final String subtitle; 10 | final DecorationImage image; 11 | DataListBuilder dataListBuilder = new DataListBuilder(); 12 | ListData({ 13 | this.margin, 14 | this.subtitle, 15 | this.title, 16 | this.width, 17 | this.image, 18 | this.index, 19 | }); 20 | @override 21 | Widget build(BuildContext context) { 22 | print(dataListBuilder.rowItemList[index - 2].title); 23 | return (new Container( 24 | alignment: Alignment.center, 25 | // margin: margin, 26 | //width: width, 27 | decoration: new BoxDecoration( 28 | color: Colors.white, 29 | border: new Border( 30 | top: new BorderSide( 31 | width: 1.0, color: const Color.fromRGBO(204, 204, 204, 0.3)), 32 | bottom: new BorderSide( 33 | width: 1.0, color: const Color.fromRGBO(204, 204, 204, 0.3)), 34 | ), 35 | ), 36 | child: new Row( 37 | children: [ 38 | new Container( 39 | margin: new EdgeInsets.only( 40 | left: 20.0, top: 10.0, bottom: 10.0, right: 20.0), 41 | width: 60.0, 42 | height: 60.0, 43 | decoration: new BoxDecoration( 44 | shape: BoxShape.circle, 45 | image: dataListBuilder.rowItemList[index - 2].image)), 46 | new Column( 47 | crossAxisAlignment: CrossAxisAlignment.start, 48 | children: [ 49 | new Text( 50 | dataListBuilder.rowItemList[index - 2].title, 51 | style: 52 | new TextStyle(fontSize: 18.0, fontWeight: FontWeight.w400), 53 | ), 54 | new Padding( 55 | padding: new EdgeInsets.only(top: 5.0), 56 | child: new Text( 57 | dataListBuilder.rowItemList[index - 2].subtitle, 58 | style: new TextStyle( 59 | color: Colors.grey, 60 | fontSize: 14.0, 61 | fontWeight: FontWeight.w300), 62 | ), 63 | ) 64 | ], 65 | ) 66 | ], 67 | ), 68 | )); 69 | } 70 | } 71 | -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /dribbledanimation/android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /dribbledanimation/lib/Components/ListViewContainer.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'List.dart'; 3 | import 'Calender.dart'; 4 | import '../Screens/Home/styles.dart'; 5 | 6 | class ListViewContent extends StatelessWidget { 7 | final Animation listTileWidth; 8 | final Animation listSlideAnimation; 9 | final Animation listSlidePosition; 10 | ListViewContent({ 11 | this.listSlideAnimation, 12 | this.listSlidePosition, 13 | this.listTileWidth, 14 | }); 15 | @override 16 | Widget build(BuildContext context) { 17 | return (new Stack( 18 | alignment: listSlideAnimation.value, 19 | children: [ 20 | new Calender(margin: listSlidePosition.value * 6.5), 21 | new ListData( 22 | margin: listSlidePosition.value * 5.5, 23 | width: listTileWidth.value, 24 | title: "Yoga classes with Emily", 25 | subtitle: "7 - 8am Workout", 26 | image: avatar6), 27 | new ListData( 28 | margin: listSlidePosition.value * 4.5, 29 | width: listTileWidth.value, 30 | title: "Breakfast with Harry", 31 | subtitle: "9 - 10am ", 32 | image: avatar1), 33 | new ListData( 34 | margin: listSlidePosition.value * 3.5, 35 | width: listTileWidth.value, 36 | title: "Meet Pheobe ", 37 | subtitle: "12 - 1pm Meeting", 38 | image: avatar5), 39 | new ListData( 40 | margin: listSlidePosition.value * 2.5, 41 | width: listTileWidth.value, 42 | title: "Lunch with Janet and friends", 43 | subtitle: "2 - 3pm ", 44 | image: avatar4), 45 | new ListData( 46 | margin: listSlidePosition.value * 1.5, 47 | width: listTileWidth.value, 48 | title: "Catch up with Tom", 49 | subtitle: "5 - 6pm Hangouts", 50 | image: avatar2), 51 | new ListData( 52 | margin: listSlidePosition.value * 0.5, 53 | width: listTileWidth.value, 54 | title: "Party at Hard Rock", 55 | subtitle: "8 - 12 Pub and Restaurant", 56 | image: avatar3), 57 | ], 58 | )); 59 | } 60 | } 61 | 62 | //For large set of data 63 | 64 | //import '../Screens/Home/data.dart'; 65 | // DataListBuilder dataListBuilder = new DataListBuilder(); 66 | // var i = dataListBuilder.rowItemList.length + 0.5; 67 | // children: dataListBuilder.rowItemList.map((RowBoxData rowBoxData) { 68 | // return new ListData( 69 | // title: rowBoxData.title, 70 | // subtitle: rowBoxData.subtitle, 71 | // image: rowBoxData.image, 72 | // width: listTileWidth.value, 73 | // margin: listSlidePosition.value * (--i).toDouble(), 74 | // ); 75 | // }).toList(), 76 | -------------------------------------------------------------------------------- /dribbledanimation/lib/Screens/Home/homeAnimation.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter/scheduler.dart' show timeDilation; 3 | 4 | class StaggerAnimation extends StatelessWidget { 5 | StaggerAnimation({Key key, this.buttonController}) 6 | : buttonZoomOutAnimation = new Tween( 7 | begin: 60.0, 8 | end: 1000.0, 9 | ) 10 | .animate( 11 | new CurvedAnimation(parent: buttonController, curve: Curves.easeOut), 12 | ), 13 | buttonBottomtoCenterAnimation = new AlignmentTween( 14 | begin: Alignment.bottomRight, 15 | end: Alignment.center, 16 | ) 17 | .animate( 18 | new CurvedAnimation( 19 | parent: buttonController, 20 | curve: new Interval( 21 | 0.0, 22 | 0.200, 23 | curve: Curves.easeOut, 24 | ), 25 | ), 26 | ), 27 | super(key: key); 28 | 29 | final Animation buttonController; 30 | final Animation buttonZoomOutAnimation; 31 | final Animation buttonBottomtoCenterAnimation; 32 | 33 | Widget _buildAnimation(BuildContext context, Widget child) { 34 | timeDilation = 0.4; 35 | 36 | return (new Padding( 37 | padding: buttonZoomOutAnimation.value < 400 38 | ? new EdgeInsets.all(20.0) 39 | : new EdgeInsets.all(0.0), 40 | child: new Container( 41 | alignment: buttonBottomtoCenterAnimation.value, 42 | child: new InkWell( 43 | child: new Container( 44 | width: buttonZoomOutAnimation.value, 45 | height: buttonZoomOutAnimation.value, 46 | alignment: buttonBottomtoCenterAnimation.value, 47 | decoration: new BoxDecoration( 48 | color: const Color.fromRGBO(247, 64, 106, 1.0), 49 | shape: buttonZoomOutAnimation.value < 400 50 | ? BoxShape.circle 51 | : BoxShape.rectangle), 52 | child: new Icon( 53 | Icons.add, 54 | size: buttonZoomOutAnimation.value < 50 55 | ? buttonZoomOutAnimation.value 56 | : 0.0, 57 | color: Colors.white, 58 | ), 59 | ), 60 | )))); 61 | } 62 | 63 | @override 64 | Widget build(BuildContext context) { 65 | buttonController.addListener(() { 66 | // if (controller.isCompleted) Navigator.pushNamed(context, "/login"); //options 67 | // if (controller.isCompleted) Navigator.of(context).pop(); //options 68 | if (buttonController.isCompleted) { 69 | Navigator.pushReplacementNamed(context, "/login"); 70 | } 71 | }); 72 | return new AnimatedBuilder( 73 | builder: _buildAnimation, 74 | animation: buttonController, 75 | ); 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "size" : "20x20", 5 | "idiom" : "iphone", 6 | "filename" : "Icon-App-20x20@2x.png", 7 | "scale" : "2x" 8 | }, 9 | { 10 | "size" : "20x20", 11 | "idiom" : "iphone", 12 | "filename" : "Icon-App-20x20@3x.png", 13 | "scale" : "3x" 14 | }, 15 | { 16 | "size" : "29x29", 17 | "idiom" : "iphone", 18 | "filename" : "Icon-App-29x29@1x.png", 19 | "scale" : "1x" 20 | }, 21 | { 22 | "size" : "29x29", 23 | "idiom" : "iphone", 24 | "filename" : "Icon-App-29x29@2x.png", 25 | "scale" : "2x" 26 | }, 27 | { 28 | "size" : "29x29", 29 | "idiom" : "iphone", 30 | "filename" : "Icon-App-29x29@3x.png", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "size" : "40x40", 35 | "idiom" : "iphone", 36 | "filename" : "Icon-App-40x40@2x.png", 37 | "scale" : "2x" 38 | }, 39 | { 40 | "size" : "40x40", 41 | "idiom" : "iphone", 42 | "filename" : "Icon-App-40x40@3x.png", 43 | "scale" : "3x" 44 | }, 45 | { 46 | "size" : "60x60", 47 | "idiom" : "iphone", 48 | "filename" : "Icon-App-60x60@2x.png", 49 | "scale" : "2x" 50 | }, 51 | { 52 | "size" : "60x60", 53 | "idiom" : "iphone", 54 | "filename" : "Icon-App-60x60@3x.png", 55 | "scale" : "3x" 56 | }, 57 | { 58 | "size" : "20x20", 59 | "idiom" : "ipad", 60 | "filename" : "Icon-App-20x20@1x.png", 61 | "scale" : "1x" 62 | }, 63 | { 64 | "size" : "20x20", 65 | "idiom" : "ipad", 66 | "filename" : "Icon-App-20x20@2x.png", 67 | "scale" : "2x" 68 | }, 69 | { 70 | "size" : "29x29", 71 | "idiom" : "ipad", 72 | "filename" : "Icon-App-29x29@1x.png", 73 | "scale" : "1x" 74 | }, 75 | { 76 | "size" : "29x29", 77 | "idiom" : "ipad", 78 | "filename" : "Icon-App-29x29@2x.png", 79 | "scale" : "2x" 80 | }, 81 | { 82 | "size" : "40x40", 83 | "idiom" : "ipad", 84 | "filename" : "Icon-App-40x40@1x.png", 85 | "scale" : "1x" 86 | }, 87 | { 88 | "size" : "40x40", 89 | "idiom" : "ipad", 90 | "filename" : "Icon-App-40x40@2x.png", 91 | "scale" : "2x" 92 | }, 93 | { 94 | "size" : "76x76", 95 | "idiom" : "ipad", 96 | "filename" : "Icon-App-76x76@1x.png", 97 | "scale" : "1x" 98 | }, 99 | { 100 | "size" : "76x76", 101 | "idiom" : "ipad", 102 | "filename" : "Icon-App-76x76@2x.png", 103 | "scale" : "2x" 104 | }, 105 | { 106 | "size" : "83.5x83.5", 107 | "idiom" : "ipad", 108 | "filename" : "Icon-App-83.5x83.5@2x.png", 109 | "scale" : "2x" 110 | }, 111 | { 112 | "size" : "1024x1024", 113 | "idiom" : "ios-marketing", 114 | "filename" : "Icon-App-1024x1024@1x.png", 115 | "scale" : "1x" 116 | } 117 | ], 118 | "info" : { 119 | "version" : 1, 120 | "author" : "xcode" 121 | } 122 | } 123 | -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 31 | 32 | 33 | 34 | 40 | 41 | 42 | 43 | 44 | 45 | 56 | 58 | 64 | 65 | 66 | 67 | 68 | 69 | 75 | 77 | 83 | 84 | 85 | 86 | 88 | 89 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /dribbledanimation/lib/Components/HomeTopView.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'MonthView.dart'; 3 | import 'Profile_Notification.dart'; 4 | 5 | class ImageBackground extends StatelessWidget { 6 | final DecorationImage backgroundImage; 7 | 8 | final DecorationImage profileImage; 9 | final VoidCallback selectbackward; 10 | final VoidCallback selectforward; 11 | final String month; 12 | final Animation containerGrowAnimation; 13 | final Animation appbarHeight; 14 | AnimationController topImageController; 15 | ImageBackground( 16 | {this.backgroundImage, 17 | this.containerGrowAnimation, 18 | this.profileImage, 19 | this.month, 20 | this.selectbackward, 21 | this.selectforward, 22 | this.appbarHeight, 23 | this.topImageController}); 24 | @override 25 | Widget build(BuildContext context) { 26 | Size screenSize = MediaQuery.of(context).size; 27 | final Orientation orientation = MediaQuery.of(context).orientation; 28 | bool isLandscape = orientation == Orientation.landscape; 29 | return (new Container( 30 | width: screenSize.width, 31 | height: topImageController.value > 0 32 | ? appbarHeight.value 33 | : screenSize.height / 2.5, 34 | decoration: new BoxDecoration(image: backgroundImage), 35 | child: new Container( 36 | decoration: new BoxDecoration( 37 | gradient: new LinearGradient( 38 | colors: [ 39 | const Color.fromRGBO(110, 101, 103, 0.6), 40 | const Color.fromRGBO(51, 51, 63, 0.9), 41 | ], 42 | stops: [0.2, 1.0], 43 | begin: const FractionalOffset(0.0, 0.0), 44 | end: const FractionalOffset(0.0, 1.0), 45 | )), 46 | child: isLandscape 47 | ? new ListView( 48 | children: [ 49 | new Flex( 50 | direction: Axis.vertical, 51 | mainAxisAlignment: MainAxisAlignment.spaceEvenly, 52 | children: [ 53 | new Text( 54 | "Good Morning!", 55 | style: new TextStyle( 56 | fontSize: 30.0, 57 | letterSpacing: 1.2, 58 | fontWeight: FontWeight.w300, 59 | color: Colors.white), 60 | ), 61 | new ProfileNotification( 62 | containerGrowAnimation: containerGrowAnimation, 63 | profileImage: profileImage, 64 | ), 65 | new MonthView( 66 | month: month, 67 | selectbackward: selectbackward, 68 | selectforward: selectforward, 69 | ) 70 | ], 71 | ) 72 | ], 73 | ) 74 | : new Column( 75 | mainAxisAlignment: MainAxisAlignment.spaceEvenly, 76 | children: [ 77 | new Text( 78 | "Good Morning!", 79 | style: new TextStyle( 80 | fontSize: 30.0, 81 | letterSpacing: 1.2, 82 | fontWeight: FontWeight.w300, 83 | color: Colors.white), 84 | ), 85 | new ProfileNotification( 86 | containerGrowAnimation: containerGrowAnimation, 87 | profileImage: profileImage, 88 | ), 89 | new MonthView( 90 | month: month, 91 | selectbackward: selectbackward, 92 | selectforward: selectforward, 93 | ) 94 | ], 95 | ), 96 | ))); 97 | } 98 | } 99 | -------------------------------------------------------------------------------- /dribbledanimation/lib/Screens/Login/index.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'styles.dart'; 3 | import 'loginAnimation.dart'; 4 | import 'package:flutter/foundation.dart'; 5 | import 'package:flutter/animation.dart'; 6 | import 'dart:async'; 7 | import '../../Components/SignUpLink.dart'; 8 | import '../../Components/Form.dart'; 9 | import '../../Components/SignInButton.dart'; 10 | import '../../Components/WhiteTick.dart'; 11 | import 'package:flutter/services.dart'; 12 | import 'package:flutter/scheduler.dart' show timeDilation; 13 | 14 | class LoginScreen extends StatefulWidget { 15 | const LoginScreen({Key key}) : super(key: key); 16 | @override 17 | LoginScreenState createState() => new LoginScreenState(); 18 | } 19 | 20 | class LoginScreenState extends State 21 | with TickerProviderStateMixin { 22 | AnimationController _loginButtonController; 23 | var animationStatus = 0; 24 | @override 25 | void initState() { 26 | super.initState(); 27 | _loginButtonController = new AnimationController( 28 | duration: new Duration(milliseconds: 3000), vsync: this); 29 | } 30 | 31 | @override 32 | void dispose() { 33 | _loginButtonController.dispose(); 34 | super.dispose(); 35 | } 36 | 37 | Future _playAnimation() async { 38 | try { 39 | await _loginButtonController.forward(); 40 | await _loginButtonController.reverse(); 41 | } on TickerCanceled {} 42 | } 43 | 44 | Future _onWillPop() { 45 | return showDialog( 46 | context: context, 47 | child: new AlertDialog( 48 | title: new Text('Are you sure?'), 49 | actions: [ 50 | new FlatButton( 51 | onPressed: () => Navigator.of(context).pop(false), 52 | child: new Text('No'), 53 | ), 54 | new FlatButton( 55 | onPressed: () => 56 | Navigator.pushReplacementNamed(context, "/home"), 57 | child: new Text('Yes'), 58 | ), 59 | ], 60 | ), 61 | ) ?? 62 | false; 63 | } 64 | 65 | @override 66 | Widget build(BuildContext context) { 67 | timeDilation = 0.4; 68 | SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle.light); 69 | return (new WillPopScope( 70 | onWillPop: _onWillPop, 71 | child: new Scaffold( 72 | body: new Container( 73 | decoration: new BoxDecoration( 74 | image: backgroundImage, 75 | ), 76 | child: new Container( 77 | decoration: new BoxDecoration( 78 | gradient: new LinearGradient( 79 | colors: [ 80 | const Color.fromRGBO(162, 146, 199, 0.8), 81 | const Color.fromRGBO(51, 51, 63, 0.9), 82 | ], 83 | stops: [0.2, 1.0], 84 | begin: const FractionalOffset(0.0, 0.0), 85 | end: const FractionalOffset(0.0, 1.0), 86 | )), 87 | child: new ListView( 88 | padding: const EdgeInsets.all(0.0), 89 | children: [ 90 | new Stack( 91 | alignment: AlignmentDirectional.bottomCenter, 92 | children: [ 93 | new Column( 94 | mainAxisAlignment: MainAxisAlignment.spaceEvenly, 95 | children: [ 96 | new Tick(image: tick), 97 | new FormContainer(), 98 | new SignUp() 99 | ], 100 | ), 101 | animationStatus == 0 102 | ? new Padding( 103 | padding: const EdgeInsets.only(bottom: 50.0), 104 | child: new InkWell( 105 | onTap: () { 106 | setState(() { 107 | animationStatus = 1; 108 | }); 109 | _playAnimation(); 110 | }, 111 | child: new SignIn()), 112 | ) 113 | : new StaggerAnimation( 114 | buttonController: 115 | _loginButtonController.view), 116 | ], 117 | ), 118 | ], 119 | ))), 120 | ))); 121 | } 122 | } 123 | -------------------------------------------------------------------------------- /dribbledanimation/lib/Screens/Login/loginAnimation.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'dart:async'; 3 | 4 | class StaggerAnimation extends StatelessWidget { 5 | StaggerAnimation({Key key, this.buttonController}) 6 | : buttonSqueezeanimation = new Tween( 7 | begin: 320.0, 8 | end: 70.0, 9 | ) 10 | .animate( 11 | new CurvedAnimation( 12 | parent: buttonController, 13 | curve: new Interval( 14 | 0.0, 15 | 0.150, 16 | ), 17 | ), 18 | ), 19 | buttomZoomOut = new Tween( 20 | begin: 70.0, 21 | end: 1000.0, 22 | ) 23 | .animate( 24 | new CurvedAnimation( 25 | parent: buttonController, 26 | curve: new Interval( 27 | 0.550, 28 | 0.999, 29 | curve: Curves.bounceOut, 30 | ), 31 | ), 32 | ), 33 | containerCircleAnimation = new EdgeInsetsTween( 34 | begin: const EdgeInsets.only(bottom: 50.0), 35 | end: const EdgeInsets.only(bottom: 0.0), 36 | ) 37 | .animate( 38 | new CurvedAnimation( 39 | parent: buttonController, 40 | curve: new Interval( 41 | 0.500, 42 | 0.800, 43 | curve: Curves.ease, 44 | ), 45 | ), 46 | ), 47 | super(key: key); 48 | 49 | final AnimationController buttonController; 50 | final Animation containerCircleAnimation; 51 | final Animation buttonSqueezeanimation; 52 | final Animation buttomZoomOut; 53 | 54 | Future _playAnimation() async { 55 | try { 56 | await buttonController.forward(); 57 | await buttonController.reverse(); 58 | } on TickerCanceled {} 59 | } 60 | 61 | Widget _buildAnimation(BuildContext context, Widget child) { 62 | return new Padding( 63 | padding: buttomZoomOut.value == 70 64 | ? const EdgeInsets.only(bottom: 50.0) 65 | : containerCircleAnimation.value, 66 | child: new InkWell( 67 | onTap: () { 68 | _playAnimation(); 69 | }, 70 | child: new Hero( 71 | tag: "fade", 72 | child: buttomZoomOut.value <= 100 73 | ? new Container( 74 | width: buttomZoomOut.value == 70 75 | ? buttonSqueezeanimation.value 76 | : buttomZoomOut.value, 77 | height: 78 | buttomZoomOut.value == 70 ? 60.0 : buttomZoomOut.value, 79 | alignment: FractionalOffset.center, 80 | decoration: new BoxDecoration( 81 | color: const Color.fromRGBO(247, 64, 106, 1.0), 82 | borderRadius: buttomZoomOut.value < 100 83 | ? new BorderRadius.all(const Radius.circular(30.0)) 84 | : new BorderRadius.all(const Radius.circular(0.0)), 85 | ), 86 | child: buttonSqueezeanimation.value > 75.0 87 | ? new Text( 88 | "Sign In", 89 | style: new TextStyle( 90 | color: Colors.white, 91 | fontSize: 20.0, 92 | fontWeight: FontWeight.w300, 93 | letterSpacing: 0.3, 94 | ), 95 | ) 96 | : buttomZoomOut.value < 100.0 97 | ? new CircularProgressIndicator( 98 | value: null, 99 | strokeWidth: 1.0, 100 | valueColor: new AlwaysStoppedAnimation( 101 | Colors.white), 102 | ) 103 | : null) 104 | : new Container( 105 | width: buttomZoomOut.value, 106 | height: buttomZoomOut.value, 107 | decoration: new BoxDecoration( 108 | shape: buttomZoomOut.value < 500 109 | ? BoxShape.circle 110 | : BoxShape.rectangle, 111 | color: const Color.fromRGBO(247, 64, 106, 1.0), 112 | ), 113 | ), 114 | )), 115 | ); 116 | } 117 | 118 | @override 119 | Widget build(BuildContext context) { 120 | buttonController.addListener(() { 121 | if (buttonController.isCompleted) { 122 | Navigator.pushNamed(context, "/home"); 123 | } 124 | }); 125 | return new AnimatedBuilder( 126 | builder: _buildAnimation, 127 | animation: buttonController, 128 | ); 129 | } 130 | } 131 | -------------------------------------------------------------------------------- /dribbledanimation/android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="Gradle" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # Attempt to set APP_HOME 46 | # Resolve links: $0 may be a link 47 | PRG="$0" 48 | # Need this for relative symlinks. 49 | while [ -h "$PRG" ] ; do 50 | ls=`ls -ld "$PRG"` 51 | link=`expr "$ls" : '.*-> \(.*\)$'` 52 | if expr "$link" : '/.*' > /dev/null; then 53 | PRG="$link" 54 | else 55 | PRG=`dirname "$PRG"`"/$link" 56 | fi 57 | done 58 | SAVED="`pwd`" 59 | cd "`dirname \"$PRG\"`/" >/dev/null 60 | APP_HOME="`pwd -P`" 61 | cd "$SAVED" >/dev/null 62 | 63 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 64 | 65 | # Determine the Java command to use to start the JVM. 66 | if [ -n "$JAVA_HOME" ] ; then 67 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 68 | # IBM's JDK on AIX uses strange locations for the executables 69 | JAVACMD="$JAVA_HOME/jre/sh/java" 70 | else 71 | JAVACMD="$JAVA_HOME/bin/java" 72 | fi 73 | if [ ! -x "$JAVACMD" ] ; then 74 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 75 | 76 | Please set the JAVA_HOME variable in your environment to match the 77 | location of your Java installation." 78 | fi 79 | else 80 | JAVACMD="java" 81 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 82 | 83 | Please set the JAVA_HOME variable in your environment to match the 84 | location of your Java installation." 85 | fi 86 | 87 | # Increase the maximum file descriptors if we can. 88 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 89 | MAX_FD_LIMIT=`ulimit -H -n` 90 | if [ $? -eq 0 ] ; then 91 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 92 | MAX_FD="$MAX_FD_LIMIT" 93 | fi 94 | ulimit -n $MAX_FD 95 | if [ $? -ne 0 ] ; then 96 | warn "Could not set maximum file descriptor limit: $MAX_FD" 97 | fi 98 | else 99 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 100 | fi 101 | fi 102 | 103 | # For Darwin, add options to specify how the application appears in the dock 104 | if $darwin; then 105 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 106 | fi 107 | 108 | # For Cygwin, switch paths to Windows format before running java 109 | if $cygwin ; then 110 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 111 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 112 | JAVACMD=`cygpath --unix "$JAVACMD"` 113 | 114 | # We build the pattern for arguments to be converted via cygpath 115 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 116 | SEP="" 117 | for dir in $ROOTDIRSRAW ; do 118 | ROOTDIRS="$ROOTDIRS$SEP$dir" 119 | SEP="|" 120 | done 121 | OURCYGPATTERN="(^($ROOTDIRS))" 122 | # Add a user-defined pattern to the cygpath arguments 123 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 124 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 125 | fi 126 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 127 | i=0 128 | for arg in "$@" ; do 129 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 130 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 131 | 132 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 133 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 134 | else 135 | eval `echo args$i`="\"$arg\"" 136 | fi 137 | i=$((i+1)) 138 | done 139 | case $i in 140 | (0) set -- ;; 141 | (1) set -- "$args0" ;; 142 | (2) set -- "$args0" "$args1" ;; 143 | (3) set -- "$args0" "$args1" "$args2" ;; 144 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 145 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 146 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 147 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 148 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 149 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 150 | esac 151 | fi 152 | 153 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 154 | function splitJvmOpts() { 155 | JVM_OPTS=("$@") 156 | } 157 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 158 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 159 | 160 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 161 | -------------------------------------------------------------------------------- /dribbledanimation/lib/Screens/Home/listBuilder.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter/foundation.dart'; 3 | import 'styles.dart'; 4 | 5 | import '../../Components/Calender.dart'; 6 | 7 | import 'package:flutter/animation.dart'; 8 | import 'dart:async'; 9 | import '../../Components/ListViewContainer.dart'; 10 | import '../../Components/AddButton.dart'; 11 | import '../../Components/HomeTopView.dart'; 12 | import '../../Components/FadeContainer.dart'; 13 | import 'homeAnimation.dart'; 14 | import 'package:intl/intl.dart'; 15 | import 'package:flutter/scheduler.dart' show timeDilation; 16 | 17 | class HomeScreen extends StatefulWidget { 18 | const HomeScreen({Key key}) : super(key: key); 19 | 20 | @override 21 | HomeScreenState createState() => new HomeScreenState(); 22 | } 23 | 24 | class HomeScreenState extends State with TickerProviderStateMixin { 25 | // DataListBuilder dataListBuilder = new DataListBuilder(); 26 | ScrollController scroll; 27 | Animation containerGrowAnimation; 28 | AnimationController _screenController; 29 | AnimationController _buttonController; 30 | Animation buttonGrowAnimation; 31 | Animation listTileWidth; 32 | Animation listSlideAnimation; 33 | Animation listSlidePosition; 34 | Animation fadeScreenAnimation; 35 | var animateStatus = 0; 36 | List months = [ 37 | "January", 38 | "February", 39 | "March", 40 | "April", 41 | "May", 42 | "June", 43 | "July", 44 | "August", 45 | "September", 46 | "October", 47 | "November", 48 | "December" 49 | ]; 50 | String month = new DateFormat.MMMM().format( 51 | new DateTime.now(), 52 | ); 53 | int index = new DateTime.now().month; 54 | void _selectforward() { 55 | if (index < 12) 56 | setState(() { 57 | ++index; 58 | month = months[index - 1]; 59 | }); 60 | } 61 | 62 | void _selectbackward() { 63 | if (index > 1) 64 | setState(() { 65 | --index; 66 | month = months[index - 1]; 67 | }); 68 | } 69 | 70 | @override 71 | void initState() { 72 | super.initState(); 73 | 74 | _screenController = new AnimationController( 75 | duration: new Duration(milliseconds: 2000), vsync: this); 76 | _buttonController = new AnimationController( 77 | duration: new Duration(milliseconds: 1500), vsync: this); 78 | scroll = 79 | new ScrollController(initialScrollOffset: 0.0, keepScrollOffset: true); 80 | 81 | scroll.addListener(() { 82 | // print(scroll); 83 | // if (scroll.offset < 0) { 84 | // // scroll.offset=0.0; 85 | 86 | // } 87 | }); 88 | fadeScreenAnimation = new ColorTween( 89 | begin: const Color.fromRGBO(247, 64, 106, 1.0), 90 | end: const Color.fromRGBO(247, 64, 106, 0.0), 91 | ) 92 | .animate( 93 | new CurvedAnimation( 94 | parent: _screenController, 95 | curve: Curves.ease, 96 | ), 97 | ); 98 | containerGrowAnimation = new CurvedAnimation( 99 | parent: _screenController, 100 | curve: Curves.easeIn, 101 | ); 102 | 103 | buttonGrowAnimation = new CurvedAnimation( 104 | parent: _screenController, 105 | curve: Curves.easeOut, 106 | ); 107 | containerGrowAnimation.addListener(() { 108 | this.setState(() {}); 109 | }); 110 | containerGrowAnimation.addStatusListener((AnimationStatus status) {}); 111 | 112 | listTileWidth = new Tween( 113 | begin: 1200.0, 114 | end: 500.0, 115 | ) 116 | .animate( 117 | new CurvedAnimation( 118 | parent: _screenController, 119 | curve: new Interval( 120 | 0.225, 121 | 0.600, 122 | curve: Curves.bounceInOut, 123 | ), 124 | ), 125 | ); 126 | 127 | listSlideAnimation = new AlignmentTween( 128 | begin: Alignment.topCenter, 129 | end: Alignment.bottomCenter, 130 | ) 131 | .animate( 132 | new CurvedAnimation( 133 | parent: _screenController, 134 | curve: new Interval( 135 | 0.325, 136 | 0.500, 137 | curve: Curves.bounceOut, 138 | ), 139 | ), 140 | ); 141 | 142 | listSlidePosition = new EdgeInsetsTween( 143 | begin: const EdgeInsets.only(bottom: 16.0), 144 | end: const EdgeInsets.only(bottom: 80.0), 145 | ) 146 | .animate( 147 | new CurvedAnimation( 148 | parent: _screenController, 149 | curve: new Interval( 150 | 0.325, 151 | 0.800, 152 | curve: Curves.ease, 153 | ), 154 | ), 155 | ); 156 | _screenController.forward(); 157 | } 158 | 159 | @override 160 | void dispose() { 161 | _screenController.dispose(); 162 | _buttonController.dispose(); 163 | super.dispose(); 164 | } 165 | 166 | Future _playAnimation() async { 167 | try { 168 | await _buttonController.forward(); 169 | } on TickerCanceled {} 170 | } 171 | 172 | @override 173 | Widget build(BuildContext context) { 174 | timeDilation = 0.5; 175 | return (new Scaffold( 176 | body: new Stack( 177 | alignment: Alignment.bottomRight, 178 | children: [ 179 | new ListView.builder( 180 | shrinkWrap: _screenController.value < 1 ? false : true, 181 | controller: scroll, 182 | addAutomaticKeepAlives: false, 183 | padding: new EdgeInsets.all(0.0), 184 | itemCount: 3, 185 | itemBuilder: (BuildContext context, int index) { 186 | if (index == 0) 187 | return new ImageBackground( 188 | backgroundImage: backgroundImage, 189 | containerGrowAnimation: containerGrowAnimation, 190 | profileImage: profileImage, 191 | month: month, 192 | selectbackward: _selectbackward, 193 | selectforward: _selectforward, 194 | ); 195 | else if (index == 1) 196 | return new Calender(); 197 | else { 198 | return new ListViewContent( 199 | listSlideAnimation: listSlideAnimation, 200 | listSlidePosition: listSlidePosition, 201 | listTileWidth: listTileWidth, 202 | ); 203 | // return new ListData( 204 | // index: index, 205 | // ); 206 | } 207 | }, 208 | ), 209 | new FadeBox( 210 | fadeScreenAnimation: fadeScreenAnimation, 211 | containerGrowAnimation: containerGrowAnimation, 212 | ), 213 | animateStatus == 0 214 | ? new Padding( 215 | padding: new EdgeInsets.all(20.0), 216 | child: new InkWell( 217 | splashColor: Colors.white, 218 | highlightColor: Colors.white, 219 | onTap: () { 220 | setState(() { 221 | animateStatus = 1; 222 | }); 223 | _playAnimation(); 224 | }, 225 | child: new AddButton( 226 | buttonGrowAnimation: buttonGrowAnimation, 227 | ))) 228 | : new StaggerAnimation(buttonController: _buttonController.view), 229 | ], 230 | ))); 231 | } 232 | } 233 | -------------------------------------------------------------------------------- /dribbledanimation/lib/Screens/Home/index.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'styles.dart'; 3 | import 'package:flutter/foundation.dart'; 4 | import 'package:flutter/animation.dart'; 5 | import 'dart:async'; 6 | import '../../Components/ListViewContainer.dart'; 7 | import '../../Components/AddButton.dart'; 8 | import '../../Components/HomeTopView.dart'; 9 | import '../../Components/FadeContainer.dart'; 10 | import 'homeAnimation.dart'; 11 | import 'package:intl/intl.dart'; 12 | import 'package:flutter/services.dart'; 13 | import 'package:flutter/scheduler.dart' show timeDilation; 14 | 15 | class HomeScreen extends StatefulWidget { 16 | const HomeScreen({Key key}) : super(key: key); 17 | 18 | @override 19 | HomeScreenState createState() => new HomeScreenState(); 20 | } 21 | 22 | class HomeScreenState extends State with TickerProviderStateMixin { 23 | ScrollController scroll; 24 | AnimationController topImageController; 25 | Animation appbarHeight; 26 | Animation containerGrowAnimation; 27 | AnimationController _screenController; 28 | AnimationController _buttonController; 29 | Animation buttonGrowAnimation; 30 | Animation listTileWidth; 31 | Animation listSlideAnimation; 32 | Animation buttonSwingAnimation; 33 | Animation listSlidePosition; 34 | Animation fadeScreenAnimation; 35 | var animateStatus = 0; 36 | List months = [ 37 | "January", 38 | "February", 39 | "March", 40 | "April", 41 | "May", 42 | "June", 43 | "July", 44 | "August", 45 | "September", 46 | "October", 47 | "November", 48 | "December" 49 | ]; 50 | String month = new DateFormat.MMMM().format( 51 | new DateTime.now(), 52 | ); 53 | int index = new DateTime.now().month; 54 | void _selectforward() { 55 | if (index < 12) 56 | setState(() { 57 | ++index; 58 | month = months[index - 1]; 59 | }); 60 | } 61 | 62 | void _selectbackward() { 63 | if (index > 1) 64 | setState(() { 65 | --index; 66 | month = months[index - 1]; 67 | }); 68 | } 69 | 70 | @override 71 | void initState() { 72 | super.initState(); 73 | 74 | _screenController = new AnimationController( 75 | duration: new Duration(milliseconds: 2000), vsync: this); 76 | _buttonController = new AnimationController( 77 | duration: new Duration(milliseconds: 1500), vsync: this); 78 | topImageController = new AnimationController( 79 | duration: new Duration(milliseconds: 800), vsync: this); 80 | 81 | scroll = 82 | new ScrollController(initialScrollOffset: 0.0, keepScrollOffset: true); 83 | appbarHeight = new Tween(begin: 250.0, end: 350.0).animate( 84 | new CurvedAnimation( 85 | parent: topImageController, 86 | curve: Curves.ease, 87 | ), 88 | ); 89 | scroll.addListener(() { 90 | // print(scroll.offset); 91 | 92 | if (scroll.offset < -10) { 93 | appbarHeight.addListener(() { 94 | // var i = appbarHeight.value; 95 | // print("app:{$i}"); 96 | this.setState(() {}); 97 | }); 98 | topImageController.forward(); 99 | } else if (scroll.offset < -150.0) 100 | topImageController.reset(); 101 | else if (scroll.offset >= 0) topImageController.reset(); 102 | }); 103 | 104 | fadeScreenAnimation = new ColorTween( 105 | begin: const Color.fromRGBO(247, 64, 106, 1.0), 106 | end: const Color.fromRGBO(247, 64, 106, 0.0), 107 | ) 108 | .animate( 109 | new CurvedAnimation( 110 | parent: _screenController, 111 | curve: Curves.ease, 112 | ), 113 | ); 114 | containerGrowAnimation = new CurvedAnimation( 115 | parent: _screenController, 116 | curve: Curves.easeIn, 117 | ); 118 | 119 | buttonGrowAnimation = new CurvedAnimation( 120 | parent: _screenController, 121 | curve: Curves.easeOut, 122 | ); 123 | containerGrowAnimation.addListener(() { 124 | this.setState(() {}); 125 | }); 126 | containerGrowAnimation.addStatusListener((AnimationStatus status) {}); 127 | 128 | listTileWidth = new Tween( 129 | begin: 1000.0, 130 | end: 600.0, 131 | ) 132 | .animate( 133 | new CurvedAnimation( 134 | parent: _screenController, 135 | curve: new Interval( 136 | 0.225, 137 | 0.600, 138 | curve: Curves.bounceIn, 139 | ), 140 | ), 141 | ); 142 | 143 | listSlideAnimation = new AlignmentTween( 144 | begin: Alignment.topCenter, 145 | end: Alignment.bottomCenter, 146 | ) 147 | .animate( 148 | new CurvedAnimation( 149 | parent: _screenController, 150 | curve: new Interval( 151 | 0.325, 152 | 0.700, 153 | curve: Curves.ease, 154 | ), 155 | ), 156 | ); 157 | buttonSwingAnimation = new AlignmentTween( 158 | begin: Alignment.topCenter, 159 | end: Alignment.bottomRight, 160 | ) 161 | .animate( 162 | new CurvedAnimation( 163 | parent: _screenController, 164 | curve: new Interval( 165 | 0.225, 166 | 0.600, 167 | curve: Curves.ease, 168 | ), 169 | ), 170 | ); 171 | listSlidePosition = new EdgeInsetsTween( 172 | begin: const EdgeInsets.only(bottom: 16.0), 173 | end: const EdgeInsets.only(bottom: 80.0), 174 | ) 175 | .animate( 176 | new CurvedAnimation( 177 | parent: _screenController, 178 | curve: new Interval( 179 | 0.325, 180 | 0.800, 181 | curve: Curves.ease, 182 | ), 183 | ), 184 | ); 185 | _screenController.forward(); 186 | } 187 | 188 | @override 189 | void dispose() { 190 | _screenController.dispose(); 191 | _buttonController.dispose(); 192 | super.dispose(); 193 | } 194 | 195 | Future _playAnimation() async { 196 | try { 197 | await _buttonController.forward(); 198 | } on TickerCanceled {} 199 | } 200 | 201 | @override 202 | Widget build(BuildContext context) { 203 | timeDilation = 0.3; 204 | Size screenSize = MediaQuery.of(context).size; 205 | SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle.light); 206 | 207 | return (new WillPopScope( 208 | onWillPop: () async { 209 | return true; 210 | }, 211 | child: new Scaffold( 212 | body: new Container( 213 | width: screenSize.width, 214 | height: screenSize.height, 215 | child: new Stack( 216 | //alignment: buttonSwingAnimation.value, 217 | alignment: Alignment.bottomRight, 218 | children: [ 219 | new ListView( 220 | controller: scroll, 221 | shrinkWrap: _screenController.value < 1 ? false : true, 222 | padding: const EdgeInsets.all(0.0), 223 | children: [ 224 | new ImageBackground( 225 | backgroundImage: backgroundImage, 226 | containerGrowAnimation: containerGrowAnimation, 227 | topImageController: topImageController, 228 | appbarHeight: appbarHeight, 229 | profileImage: profileImage, 230 | month: month, 231 | selectbackward: _selectbackward, 232 | selectforward: _selectforward, 233 | ), 234 | //new Calender(), 235 | new ListViewContent( 236 | listSlideAnimation: listSlideAnimation, 237 | listSlidePosition: listSlidePosition, 238 | listTileWidth: listTileWidth, 239 | ) 240 | ], 241 | ), 242 | new FadeBox( 243 | fadeScreenAnimation: fadeScreenAnimation, 244 | containerGrowAnimation: containerGrowAnimation, 245 | ), 246 | animateStatus == 0 247 | ? new Padding( 248 | padding: new EdgeInsets.all(20.0), 249 | child: new InkWell( 250 | splashColor: Colors.white, 251 | highlightColor: Colors.white, 252 | onTap: () { 253 | setState(() { 254 | animateStatus = 1; 255 | }); 256 | _playAnimation(); 257 | }, 258 | child: new AddButton( 259 | buttonGrowAnimation: buttonGrowAnimation, 260 | ))) 261 | : new StaggerAnimation( 262 | buttonController: _buttonController.view), 263 | ], 264 | ), 265 | ), 266 | ), 267 | )); 268 | } 269 | } 270 | -------------------------------------------------------------------------------- /dribbledanimation/lib/Screens/Home/customscroll.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'styles.dart'; 3 | import 'package:flutter/foundation.dart'; 4 | import 'package:flutter/animation.dart'; 5 | import 'dart:async'; 6 | import '../../Components/ListViewContainer.dart'; 7 | import '../../Components/AddButton.dart'; 8 | import '../../Components/HomeTopView.dart'; 9 | import '../../Components/FadeContainer.dart'; 10 | import 'homeAnimation.dart'; 11 | import 'package:intl/intl.dart'; 12 | import '../../Components/Calender.dart'; 13 | import 'package:flutter/scheduler.dart' show timeDilation; 14 | 15 | class HomeScreen extends StatefulWidget { 16 | const HomeScreen({Key key}) : super(key: key); 17 | 18 | @override 19 | HomeScreenState createState() => new HomeScreenState(); 20 | } 21 | 22 | enum AppBarBehavior { normal, pinned, floating, snapping } 23 | 24 | class HomeScreenState extends State with TickerProviderStateMixin { 25 | static final GlobalKey _scaffoldKey = 26 | new GlobalKey(); 27 | final double _appBarHeight = 256.0; 28 | ScrollController scroll; 29 | AnimationController topImageController; 30 | Animation appbarHeight; 31 | Animation containerGrowAnimation; 32 | AnimationController _screenController; 33 | AnimationController _buttonController; 34 | Animation buttonGrowAnimation; 35 | Animation listTileWidth; 36 | Animation listSlideAnimation; 37 | Animation buttonSwingAnimation; 38 | Animation listSlidePosition; 39 | Animation fadeScreenAnimation; 40 | 41 | var animateStatus = 0; 42 | String title = ""; 43 | List months = [ 44 | "January", 45 | "February", 46 | "March", 47 | "April", 48 | "May", 49 | "June", 50 | "July", 51 | "August", 52 | "September", 53 | "October", 54 | "November", 55 | "December" 56 | ]; 57 | String month = new DateFormat.MMMM().format( 58 | new DateTime.now(), 59 | ); 60 | int index = new DateTime.now().month; 61 | void _selectforward() { 62 | if (index < 12) 63 | setState(() { 64 | ++index; 65 | month = months[index - 1]; 66 | }); 67 | } 68 | 69 | void _selectbackward() { 70 | if (index > 1) 71 | setState(() { 72 | --index; 73 | month = months[index - 1]; 74 | }); 75 | } 76 | 77 | @override 78 | void initState() { 79 | super.initState(); 80 | _screenController = new AnimationController( 81 | duration: new Duration(milliseconds: 2000), vsync: this); 82 | _buttonController = new AnimationController( 83 | duration: new Duration(milliseconds: 1500), vsync: this); 84 | 85 | topImageController = new AnimationController( 86 | duration: new Duration(milliseconds: 800), vsync: this); 87 | 88 | scroll = 89 | new ScrollController(initialScrollOffset: 0.0, keepScrollOffset: true); 90 | appbarHeight = new Tween( 91 | begin: 256.0, 92 | end: 350.0, 93 | ) 94 | .animate( 95 | new CurvedAnimation( 96 | parent: topImageController, 97 | curve: Curves.ease, 98 | ), 99 | ); 100 | scroll.addListener(() { 101 | print(scroll.offset); 102 | if (scroll.offset > 100) 103 | title = "List to do"; 104 | else 105 | title = ""; 106 | if (scroll.offset < 0) { 107 | appbarHeight.addListener(() { 108 | this.setState(() {}); 109 | }); 110 | topImageController.forward(); 111 | } else 112 | topImageController.reset(); 113 | }); 114 | 115 | fadeScreenAnimation = new ColorTween( 116 | begin: const Color.fromRGBO(247, 64, 106, 1.0), 117 | end: const Color.fromRGBO(247, 64, 106, 0.0), 118 | ) 119 | .animate( 120 | new CurvedAnimation( 121 | parent: _screenController, 122 | curve: Curves.ease, 123 | ), 124 | ); 125 | containerGrowAnimation = new CurvedAnimation( 126 | parent: _screenController, 127 | curve: Curves.easeIn, 128 | ); 129 | 130 | buttonGrowAnimation = new CurvedAnimation( 131 | parent: _screenController, 132 | curve: Curves.easeOut, 133 | ); 134 | containerGrowAnimation.addListener(() { 135 | this.setState(() {}); 136 | }); 137 | containerGrowAnimation.addStatusListener((AnimationStatus status) {}); 138 | 139 | listTileWidth = new Tween( 140 | begin: 1000.0, 141 | end: 600.0, 142 | ) 143 | .animate( 144 | new CurvedAnimation( 145 | parent: _screenController, 146 | curve: new Interval( 147 | 0.225, 148 | 0.600, 149 | curve: Curves.bounceIn, 150 | ), 151 | ), 152 | ); 153 | 154 | listSlideAnimation = new AlignmentTween( 155 | begin: Alignment.topCenter, 156 | end: Alignment.bottomCenter, 157 | ) 158 | .animate( 159 | new CurvedAnimation( 160 | parent: _screenController, 161 | curve: new Interval( 162 | 0.325, 163 | 0.500, 164 | curve: Curves.ease, 165 | ), 166 | ), 167 | ); 168 | buttonSwingAnimation = new AlignmentTween( 169 | begin: Alignment.topCenter, 170 | end: Alignment.bottomRight, 171 | ) 172 | .animate( 173 | new CurvedAnimation( 174 | parent: _screenController, 175 | curve: new Interval( 176 | 0.225, 177 | 0.600, 178 | curve: Curves.ease, 179 | ), 180 | ), 181 | ); 182 | listSlidePosition = new EdgeInsetsTween( 183 | begin: const EdgeInsets.only(bottom: 16.0), 184 | end: const EdgeInsets.only(bottom: 80.0), 185 | ) 186 | .animate( 187 | new CurvedAnimation( 188 | parent: _screenController, 189 | curve: new Interval( 190 | 0.325, 191 | 0.800, 192 | curve: Curves.ease, 193 | ), 194 | ), 195 | ); 196 | _screenController.forward(); 197 | } 198 | 199 | @override 200 | void dispose() { 201 | _screenController.dispose(); 202 | _buttonController.dispose(); 203 | super.dispose(); 204 | } 205 | 206 | Future _playAnimation() async { 207 | try { 208 | await _buttonController.forward(); 209 | } on TickerCanceled {} 210 | } 211 | 212 | AppBarBehavior _appBarBehavior = AppBarBehavior.pinned; 213 | 214 | @override 215 | Widget build(BuildContext context) { 216 | timeDilation = 0.3; 217 | 218 | return new Theme( 219 | data: new ThemeData( 220 | brightness: Brightness.light, 221 | primaryColor: const Color.fromRGBO(247, 64, 106, 1.0), 222 | platform: Theme.of(context).platform, 223 | ), 224 | child: new Scaffold( 225 | key: _scaffoldKey, 226 | body: new Stack(alignment: Alignment.bottomRight, children: [ 227 | new CustomScrollView( 228 | // shrinkWrap: true, 229 | //primary: false, 230 | controller: scroll, 231 | slivers: [ 232 | new SliverAppBar( 233 | elevation: 0.0, 234 | forceElevated: true, 235 | automaticallyImplyLeading: false, 236 | expandedHeight: topImageController.value > 0 237 | ? appbarHeight.value 238 | : _appBarHeight, 239 | pinned: _appBarBehavior == AppBarBehavior.pinned, 240 | floating: _appBarBehavior == AppBarBehavior.floating || 241 | _appBarBehavior == AppBarBehavior.snapping, 242 | snap: _appBarBehavior == AppBarBehavior.snapping, 243 | flexibleSpace: new FlexibleSpaceBar( 244 | title: new Text(title), 245 | background: new Stack( 246 | fit: StackFit.expand, 247 | children: [ 248 | new ImageBackground( 249 | backgroundImage: backgroundImage, 250 | containerGrowAnimation: containerGrowAnimation, 251 | profileImage: profileImage, 252 | month: month, 253 | selectbackward: _selectbackward, 254 | selectforward: _selectforward, 255 | ), 256 | ], 257 | ), 258 | ), 259 | ), 260 | new SliverList( 261 | delegate: new SliverChildListDelegate([ 262 | new Calender(), 263 | new ListViewContent( 264 | listSlideAnimation: listSlideAnimation, 265 | listSlidePosition: listSlidePosition, 266 | listTileWidth: listTileWidth, 267 | ), 268 | ]), 269 | ), 270 | ], 271 | ), 272 | new FadeBox( 273 | fadeScreenAnimation: fadeScreenAnimation, 274 | containerGrowAnimation: containerGrowAnimation, 275 | ), 276 | animateStatus == 0 277 | ? new Padding( 278 | padding: new EdgeInsets.all(20.0), 279 | child: new InkWell( 280 | splashColor: Colors.white, 281 | highlightColor: Colors.white, 282 | onTap: () { 283 | setState(() { 284 | animateStatus = 1; 285 | }); 286 | _playAnimation(); 287 | }, 288 | child: new AddButton( 289 | buttonGrowAnimation: buttonGrowAnimation, 290 | ))) 291 | : new StaggerAnimation( 292 | buttonController: _buttonController.view), 293 | ])), 294 | ); 295 | } 296 | } 297 | -------------------------------------------------------------------------------- /dribbledanimation/pubspec.lock: -------------------------------------------------------------------------------- 1 | # Generated by pub 2 | # See http://pub.dartlang.org/doc/glossary.html#lockfile 3 | packages: 4 | analyzer: 5 | dependency: transitive 6 | description: 7 | name: analyzer 8 | url: "https://pub.dartlang.org" 9 | source: hosted 10 | version: "0.31.1" 11 | args: 12 | dependency: transitive 13 | description: 14 | name: args 15 | url: "https://pub.dartlang.org" 16 | source: hosted 17 | version: "1.3.0" 18 | async: 19 | dependency: transitive 20 | description: 21 | name: async 22 | url: "https://pub.dartlang.org" 23 | source: hosted 24 | version: "2.0.4" 25 | barback: 26 | dependency: transitive 27 | description: 28 | name: barback 29 | url: "https://pub.dartlang.org" 30 | source: hosted 31 | version: "0.15.2+14" 32 | boolean_selector: 33 | dependency: transitive 34 | description: 35 | name: boolean_selector 36 | url: "https://pub.dartlang.org" 37 | source: hosted 38 | version: "1.0.2" 39 | charcode: 40 | dependency: transitive 41 | description: 42 | name: charcode 43 | url: "https://pub.dartlang.org" 44 | source: hosted 45 | version: "1.1.1" 46 | cli_util: 47 | dependency: transitive 48 | description: 49 | name: cli_util 50 | url: "https://pub.dartlang.org" 51 | source: hosted 52 | version: "0.1.2+1" 53 | collection: 54 | dependency: transitive 55 | description: 56 | name: collection 57 | url: "https://pub.dartlang.org" 58 | source: hosted 59 | version: "1.14.5" 60 | convert: 61 | dependency: transitive 62 | description: 63 | name: convert 64 | url: "https://pub.dartlang.org" 65 | source: hosted 66 | version: "2.0.1" 67 | crypto: 68 | dependency: transitive 69 | description: 70 | name: crypto 71 | url: "https://pub.dartlang.org" 72 | source: hosted 73 | version: "2.0.2+1" 74 | csslib: 75 | dependency: transitive 76 | description: 77 | name: csslib 78 | url: "https://pub.dartlang.org" 79 | source: hosted 80 | version: "0.14.1" 81 | cupertino_icons: 82 | dependency: "direct main" 83 | description: 84 | name: cupertino_icons 85 | url: "https://pub.dartlang.org" 86 | source: hosted 87 | version: "0.1.1" 88 | flutter: 89 | dependency: "direct main" 90 | description: flutter 91 | source: sdk 92 | version: "0.0.0" 93 | flutter_test: 94 | dependency: "direct dev" 95 | description: flutter 96 | source: sdk 97 | version: "0.0.0" 98 | front_end: 99 | dependency: transitive 100 | description: 101 | name: front_end 102 | url: "https://pub.dartlang.org" 103 | source: hosted 104 | version: "0.1.0-alpha.9" 105 | glob: 106 | dependency: transitive 107 | description: 108 | name: glob 109 | url: "https://pub.dartlang.org" 110 | source: hosted 111 | version: "1.1.5" 112 | html: 113 | dependency: transitive 114 | description: 115 | name: html 116 | url: "https://pub.dartlang.org" 117 | source: hosted 118 | version: "0.13.2+2" 119 | http: 120 | dependency: transitive 121 | description: 122 | name: http 123 | url: "https://pub.dartlang.org" 124 | source: hosted 125 | version: "0.11.3+16" 126 | http_multi_server: 127 | dependency: transitive 128 | description: 129 | name: http_multi_server 130 | url: "https://pub.dartlang.org" 131 | source: hosted 132 | version: "2.0.4" 133 | http_parser: 134 | dependency: transitive 135 | description: 136 | name: http_parser 137 | url: "https://pub.dartlang.org" 138 | source: hosted 139 | version: "3.1.1" 140 | intl: 141 | dependency: "direct main" 142 | description: 143 | name: intl 144 | url: "https://pub.dartlang.org" 145 | source: hosted 146 | version: "0.15.2" 147 | io: 148 | dependency: transitive 149 | description: 150 | name: io 151 | url: "https://pub.dartlang.org" 152 | source: hosted 153 | version: "0.3.2+1" 154 | isolate: 155 | dependency: transitive 156 | description: 157 | name: isolate 158 | url: "https://pub.dartlang.org" 159 | source: hosted 160 | version: "1.1.0" 161 | js: 162 | dependency: transitive 163 | description: 164 | name: js 165 | url: "https://pub.dartlang.org" 166 | source: hosted 167 | version: "0.6.1" 168 | kernel: 169 | dependency: transitive 170 | description: 171 | name: kernel 172 | url: "https://pub.dartlang.org" 173 | source: hosted 174 | version: "0.3.0-alpha.9" 175 | logging: 176 | dependency: transitive 177 | description: 178 | name: logging 179 | url: "https://pub.dartlang.org" 180 | source: hosted 181 | version: "0.11.3+1" 182 | matcher: 183 | dependency: transitive 184 | description: 185 | name: matcher 186 | url: "https://pub.dartlang.org" 187 | source: hosted 188 | version: "0.12.1+4" 189 | meta: 190 | dependency: transitive 191 | description: 192 | name: meta 193 | url: "https://pub.dartlang.org" 194 | source: hosted 195 | version: "1.1.2" 196 | mime: 197 | dependency: transitive 198 | description: 199 | name: mime 200 | url: "https://pub.dartlang.org" 201 | source: hosted 202 | version: "0.9.6" 203 | mockito: 204 | dependency: transitive 205 | description: 206 | name: mockito 207 | url: "https://pub.dartlang.org" 208 | source: hosted 209 | version: "2.2.3" 210 | multi_server_socket: 211 | dependency: transitive 212 | description: 213 | name: multi_server_socket 214 | url: "https://pub.dartlang.org" 215 | source: hosted 216 | version: "1.0.1" 217 | node_preamble: 218 | dependency: transitive 219 | description: 220 | name: node_preamble 221 | url: "https://pub.dartlang.org" 222 | source: hosted 223 | version: "1.4.0" 224 | package_config: 225 | dependency: transitive 226 | description: 227 | name: package_config 228 | url: "https://pub.dartlang.org" 229 | source: hosted 230 | version: "1.0.3" 231 | package_resolver: 232 | dependency: transitive 233 | description: 234 | name: package_resolver 235 | url: "https://pub.dartlang.org" 236 | source: hosted 237 | version: "1.0.2" 238 | path: 239 | dependency: transitive 240 | description: 241 | name: path 242 | url: "https://pub.dartlang.org" 243 | source: hosted 244 | version: "1.5.1" 245 | plugin: 246 | dependency: transitive 247 | description: 248 | name: plugin 249 | url: "https://pub.dartlang.org" 250 | source: hosted 251 | version: "0.2.0+2" 252 | pool: 253 | dependency: transitive 254 | description: 255 | name: pool 256 | url: "https://pub.dartlang.org" 257 | source: hosted 258 | version: "1.3.4" 259 | pub_semver: 260 | dependency: transitive 261 | description: 262 | name: pub_semver 263 | url: "https://pub.dartlang.org" 264 | source: hosted 265 | version: "1.3.2" 266 | quiver: 267 | dependency: transitive 268 | description: 269 | name: quiver 270 | url: "https://pub.dartlang.org" 271 | source: hosted 272 | version: "0.28.0" 273 | shelf: 274 | dependency: transitive 275 | description: 276 | name: shelf 277 | url: "https://pub.dartlang.org" 278 | source: hosted 279 | version: "0.7.2" 280 | shelf_packages_handler: 281 | dependency: transitive 282 | description: 283 | name: shelf_packages_handler 284 | url: "https://pub.dartlang.org" 285 | source: hosted 286 | version: "1.0.3" 287 | shelf_static: 288 | dependency: transitive 289 | description: 290 | name: shelf_static 291 | url: "https://pub.dartlang.org" 292 | source: hosted 293 | version: "0.2.7" 294 | shelf_web_socket: 295 | dependency: transitive 296 | description: 297 | name: shelf_web_socket 298 | url: "https://pub.dartlang.org" 299 | source: hosted 300 | version: "0.2.2" 301 | sky_engine: 302 | dependency: transitive 303 | description: flutter 304 | source: sdk 305 | version: "0.0.99" 306 | source_map_stack_trace: 307 | dependency: transitive 308 | description: 309 | name: source_map_stack_trace 310 | url: "https://pub.dartlang.org" 311 | source: hosted 312 | version: "1.1.4" 313 | source_maps: 314 | dependency: transitive 315 | description: 316 | name: source_maps 317 | url: "https://pub.dartlang.org" 318 | source: hosted 319 | version: "0.10.4" 320 | source_span: 321 | dependency: transitive 322 | description: 323 | name: source_span 324 | url: "https://pub.dartlang.org" 325 | source: hosted 326 | version: "1.4.0" 327 | stack_trace: 328 | dependency: transitive 329 | description: 330 | name: stack_trace 331 | url: "https://pub.dartlang.org" 332 | source: hosted 333 | version: "1.9.1" 334 | stream_channel: 335 | dependency: transitive 336 | description: 337 | name: stream_channel 338 | url: "https://pub.dartlang.org" 339 | source: hosted 340 | version: "1.6.3" 341 | string_scanner: 342 | dependency: transitive 343 | description: 344 | name: string_scanner 345 | url: "https://pub.dartlang.org" 346 | source: hosted 347 | version: "1.0.2" 348 | term_glyph: 349 | dependency: transitive 350 | description: 351 | name: term_glyph 352 | url: "https://pub.dartlang.org" 353 | source: hosted 354 | version: "1.0.0" 355 | test: 356 | dependency: transitive 357 | description: 358 | name: test 359 | url: "https://pub.dartlang.org" 360 | source: hosted 361 | version: "0.12.30+4" 362 | typed_data: 363 | dependency: transitive 364 | description: 365 | name: typed_data 366 | url: "https://pub.dartlang.org" 367 | source: hosted 368 | version: "1.1.5" 369 | utf: 370 | dependency: transitive 371 | description: 372 | name: utf 373 | url: "https://pub.dartlang.org" 374 | source: hosted 375 | version: "0.9.0+4" 376 | vector_math: 377 | dependency: transitive 378 | description: 379 | name: vector_math 380 | url: "https://pub.dartlang.org" 381 | source: hosted 382 | version: "2.0.5" 383 | watcher: 384 | dependency: transitive 385 | description: 386 | name: watcher 387 | url: "https://pub.dartlang.org" 388 | source: hosted 389 | version: "0.9.7+7" 390 | web_socket_channel: 391 | dependency: transitive 392 | description: 393 | name: web_socket_channel 394 | url: "https://pub.dartlang.org" 395 | source: hosted 396 | version: "1.0.7" 397 | yaml: 398 | dependency: transitive 399 | description: 400 | name: yaml 401 | url: "https://pub.dartlang.org" 402 | source: hosted 403 | version: "2.1.13" 404 | sdks: 405 | dart: ">=2.0.0-dev.23.0 <=2.0.0-edge.0d5cf900b021bf5c9fa593ffa12b15bcd1cc5fe0" 406 | -------------------------------------------------------------------------------- /dribbledanimation/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; 11 | 2D5378261FAA1A9400D5DBA9 /* flutter_assets in Resources */ = {isa = PBXBuildFile; fileRef = 2D5378251FAA1A9400D5DBA9 /* flutter_assets */; }; 12 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; 13 | 3B80C3941E831B6300D905FE /* App.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; }; 14 | 3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 15 | 9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; }; 16 | 9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 17 | 9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 9740EEB21CF90195004384FC /* Debug.xcconfig */; }; 18 | 9740EEB51CF90195004384FC /* Generated.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 9740EEB31CF90195004384FC /* Generated.xcconfig */; }; 19 | 978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */; }; 20 | 97C146F31CF9000F007C117D /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 97C146F21CF9000F007C117D /* main.m */; }; 21 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; 22 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; 23 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; 24 | /* End PBXBuildFile section */ 25 | 26 | /* Begin PBXCopyFilesBuildPhase section */ 27 | 9705A1C41CF9048500538489 /* Embed Frameworks */ = { 28 | isa = PBXCopyFilesBuildPhase; 29 | buildActionMask = 2147483647; 30 | dstPath = ""; 31 | dstSubfolderSpec = 10; 32 | files = ( 33 | 3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */, 34 | 9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */, 35 | ); 36 | name = "Embed Frameworks"; 37 | runOnlyForDeploymentPostprocessing = 0; 38 | }; 39 | /* End PBXCopyFilesBuildPhase section */ 40 | 41 | /* Begin PBXFileReference section */ 42 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; 43 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; 44 | 2D5378251FAA1A9400D5DBA9 /* flutter_assets */ = {isa = PBXFileReference; lastKnownFileType = folder; name = flutter_assets; path = Flutter/flutter_assets; sourceTree = SOURCE_ROOT; }; 45 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; 46 | 3B80C3931E831B6300D905FE /* App.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = App.framework; path = Flutter/App.framework; sourceTree = ""; }; 47 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; 48 | 7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; 49 | 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; 50 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; 51 | 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; 52 | 9740EEBA1CF902C7004384FC /* Flutter.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Flutter.framework; path = Flutter/Flutter.framework; sourceTree = ""; }; 53 | 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; 54 | 97C146F21CF9000F007C117D /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 55 | 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 56 | 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 57 | 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 58 | 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 59 | /* End PBXFileReference section */ 60 | 61 | /* Begin PBXFrameworksBuildPhase section */ 62 | 97C146EB1CF9000F007C117D /* Frameworks */ = { 63 | isa = PBXFrameworksBuildPhase; 64 | buildActionMask = 2147483647; 65 | files = ( 66 | 9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */, 67 | 3B80C3941E831B6300D905FE /* App.framework in Frameworks */, 68 | ); 69 | runOnlyForDeploymentPostprocessing = 0; 70 | }; 71 | /* End PBXFrameworksBuildPhase section */ 72 | 73 | /* Begin PBXGroup section */ 74 | 9740EEB11CF90186004384FC /* Flutter */ = { 75 | isa = PBXGroup; 76 | children = ( 77 | 2D5378251FAA1A9400D5DBA9 /* flutter_assets */, 78 | 3B80C3931E831B6300D905FE /* App.framework */, 79 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, 80 | 9740EEBA1CF902C7004384FC /* Flutter.framework */, 81 | 9740EEB21CF90195004384FC /* Debug.xcconfig */, 82 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, 83 | 9740EEB31CF90195004384FC /* Generated.xcconfig */, 84 | ); 85 | name = Flutter; 86 | sourceTree = ""; 87 | }; 88 | 97C146E51CF9000F007C117D = { 89 | isa = PBXGroup; 90 | children = ( 91 | 9740EEB11CF90186004384FC /* Flutter */, 92 | 97C146F01CF9000F007C117D /* Runner */, 93 | 97C146EF1CF9000F007C117D /* Products */, 94 | ); 95 | sourceTree = ""; 96 | }; 97 | 97C146EF1CF9000F007C117D /* Products */ = { 98 | isa = PBXGroup; 99 | children = ( 100 | 97C146EE1CF9000F007C117D /* Runner.app */, 101 | ); 102 | name = Products; 103 | sourceTree = ""; 104 | }; 105 | 97C146F01CF9000F007C117D /* Runner */ = { 106 | isa = PBXGroup; 107 | children = ( 108 | 7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */, 109 | 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */, 110 | 97C146FA1CF9000F007C117D /* Main.storyboard */, 111 | 97C146FD1CF9000F007C117D /* Assets.xcassets */, 112 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, 113 | 97C147021CF9000F007C117D /* Info.plist */, 114 | 97C146F11CF9000F007C117D /* Supporting Files */, 115 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, 116 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, 117 | ); 118 | path = Runner; 119 | sourceTree = ""; 120 | }; 121 | 97C146F11CF9000F007C117D /* Supporting Files */ = { 122 | isa = PBXGroup; 123 | children = ( 124 | 97C146F21CF9000F007C117D /* main.m */, 125 | ); 126 | name = "Supporting Files"; 127 | sourceTree = ""; 128 | }; 129 | /* End PBXGroup section */ 130 | 131 | /* Begin PBXNativeTarget section */ 132 | 97C146ED1CF9000F007C117D /* Runner */ = { 133 | isa = PBXNativeTarget; 134 | buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; 135 | buildPhases = ( 136 | 9740EEB61CF901F6004384FC /* Run Script */, 137 | 97C146EA1CF9000F007C117D /* Sources */, 138 | 97C146EB1CF9000F007C117D /* Frameworks */, 139 | 97C146EC1CF9000F007C117D /* Resources */, 140 | 9705A1C41CF9048500538489 /* Embed Frameworks */, 141 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */, 142 | ); 143 | buildRules = ( 144 | ); 145 | dependencies = ( 146 | ); 147 | name = Runner; 148 | productName = Runner; 149 | productReference = 97C146EE1CF9000F007C117D /* Runner.app */; 150 | productType = "com.apple.product-type.application"; 151 | }; 152 | /* End PBXNativeTarget section */ 153 | 154 | /* Begin PBXProject section */ 155 | 97C146E61CF9000F007C117D /* Project object */ = { 156 | isa = PBXProject; 157 | attributes = { 158 | LastUpgradeCheck = 0910; 159 | ORGANIZATIONNAME = "The Chromium Authors"; 160 | TargetAttributes = { 161 | 97C146ED1CF9000F007C117D = { 162 | CreatedOnToolsVersion = 7.3.1; 163 | DevelopmentTeam = 3F25347H8E; 164 | }; 165 | }; 166 | }; 167 | buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; 168 | compatibilityVersion = "Xcode 3.2"; 169 | developmentRegion = English; 170 | hasScannedForEncodings = 0; 171 | knownRegions = ( 172 | en, 173 | Base, 174 | ); 175 | mainGroup = 97C146E51CF9000F007C117D; 176 | productRefGroup = 97C146EF1CF9000F007C117D /* Products */; 177 | projectDirPath = ""; 178 | projectRoot = ""; 179 | targets = ( 180 | 97C146ED1CF9000F007C117D /* Runner */, 181 | ); 182 | }; 183 | /* End PBXProject section */ 184 | 185 | /* Begin PBXResourcesBuildPhase section */ 186 | 97C146EC1CF9000F007C117D /* Resources */ = { 187 | isa = PBXResourcesBuildPhase; 188 | buildActionMask = 2147483647; 189 | files = ( 190 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, 191 | 9740EEB51CF90195004384FC /* Generated.xcconfig in Resources */, 192 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, 193 | 9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */, 194 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, 195 | 2D5378261FAA1A9400D5DBA9 /* flutter_assets in Resources */, 196 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, 197 | ); 198 | runOnlyForDeploymentPostprocessing = 0; 199 | }; 200 | /* End PBXResourcesBuildPhase section */ 201 | 202 | /* Begin PBXShellScriptBuildPhase section */ 203 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { 204 | isa = PBXShellScriptBuildPhase; 205 | buildActionMask = 2147483647; 206 | files = ( 207 | ); 208 | inputPaths = ( 209 | ); 210 | name = "Thin Binary"; 211 | outputPaths = ( 212 | ); 213 | runOnlyForDeploymentPostprocessing = 0; 214 | shellPath = /bin/sh; 215 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" thin"; 216 | }; 217 | 9740EEB61CF901F6004384FC /* Run Script */ = { 218 | isa = PBXShellScriptBuildPhase; 219 | buildActionMask = 2147483647; 220 | files = ( 221 | ); 222 | inputPaths = ( 223 | ); 224 | name = "Run Script"; 225 | outputPaths = ( 226 | ); 227 | runOnlyForDeploymentPostprocessing = 0; 228 | shellPath = /bin/sh; 229 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; 230 | }; 231 | /* End PBXShellScriptBuildPhase section */ 232 | 233 | /* Begin PBXSourcesBuildPhase section */ 234 | 97C146EA1CF9000F007C117D /* Sources */ = { 235 | isa = PBXSourcesBuildPhase; 236 | buildActionMask = 2147483647; 237 | files = ( 238 | 978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */, 239 | 97C146F31CF9000F007C117D /* main.m in Sources */, 240 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, 241 | ); 242 | runOnlyForDeploymentPostprocessing = 0; 243 | }; 244 | /* End PBXSourcesBuildPhase section */ 245 | 246 | /* Begin PBXVariantGroup section */ 247 | 97C146FA1CF9000F007C117D /* Main.storyboard */ = { 248 | isa = PBXVariantGroup; 249 | children = ( 250 | 97C146FB1CF9000F007C117D /* Base */, 251 | ); 252 | name = Main.storyboard; 253 | sourceTree = ""; 254 | }; 255 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { 256 | isa = PBXVariantGroup; 257 | children = ( 258 | 97C147001CF9000F007C117D /* Base */, 259 | ); 260 | name = LaunchScreen.storyboard; 261 | sourceTree = ""; 262 | }; 263 | /* End PBXVariantGroup section */ 264 | 265 | /* Begin XCBuildConfiguration section */ 266 | 97C147031CF9000F007C117D /* Debug */ = { 267 | isa = XCBuildConfiguration; 268 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 269 | buildSettings = { 270 | ALWAYS_SEARCH_USER_PATHS = NO; 271 | CLANG_ANALYZER_NONNULL = YES; 272 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 273 | CLANG_CXX_LIBRARY = "libc++"; 274 | CLANG_ENABLE_MODULES = YES; 275 | CLANG_ENABLE_OBJC_ARC = YES; 276 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 277 | CLANG_WARN_BOOL_CONVERSION = YES; 278 | CLANG_WARN_COMMA = YES; 279 | CLANG_WARN_CONSTANT_CONVERSION = YES; 280 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 281 | CLANG_WARN_EMPTY_BODY = YES; 282 | CLANG_WARN_ENUM_CONVERSION = YES; 283 | CLANG_WARN_INFINITE_RECURSION = YES; 284 | CLANG_WARN_INT_CONVERSION = YES; 285 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 286 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 287 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 288 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 289 | CLANG_WARN_STRICT_PROTOTYPES = YES; 290 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 291 | CLANG_WARN_UNREACHABLE_CODE = YES; 292 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 293 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 294 | COPY_PHASE_STRIP = NO; 295 | DEBUG_INFORMATION_FORMAT = dwarf; 296 | ENABLE_STRICT_OBJC_MSGSEND = YES; 297 | ENABLE_TESTABILITY = YES; 298 | GCC_C_LANGUAGE_STANDARD = gnu99; 299 | GCC_DYNAMIC_NO_PIC = NO; 300 | GCC_NO_COMMON_BLOCKS = YES; 301 | GCC_OPTIMIZATION_LEVEL = 0; 302 | GCC_PREPROCESSOR_DEFINITIONS = ( 303 | "DEBUG=1", 304 | "$(inherited)", 305 | ); 306 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 307 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 308 | GCC_WARN_UNDECLARED_SELECTOR = YES; 309 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 310 | GCC_WARN_UNUSED_FUNCTION = YES; 311 | GCC_WARN_UNUSED_VARIABLE = YES; 312 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 313 | MTL_ENABLE_DEBUG_INFO = YES; 314 | ONLY_ACTIVE_ARCH = YES; 315 | SDKROOT = iphoneos; 316 | TARGETED_DEVICE_FAMILY = "1,2"; 317 | }; 318 | name = Debug; 319 | }; 320 | 97C147041CF9000F007C117D /* Release */ = { 321 | isa = XCBuildConfiguration; 322 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 323 | buildSettings = { 324 | ALWAYS_SEARCH_USER_PATHS = NO; 325 | CLANG_ANALYZER_NONNULL = YES; 326 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 327 | CLANG_CXX_LIBRARY = "libc++"; 328 | CLANG_ENABLE_MODULES = YES; 329 | CLANG_ENABLE_OBJC_ARC = YES; 330 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 331 | CLANG_WARN_BOOL_CONVERSION = YES; 332 | CLANG_WARN_COMMA = YES; 333 | CLANG_WARN_CONSTANT_CONVERSION = YES; 334 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 335 | CLANG_WARN_EMPTY_BODY = YES; 336 | CLANG_WARN_ENUM_CONVERSION = YES; 337 | CLANG_WARN_INFINITE_RECURSION = YES; 338 | CLANG_WARN_INT_CONVERSION = YES; 339 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 340 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 341 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 342 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 343 | CLANG_WARN_STRICT_PROTOTYPES = YES; 344 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 345 | CLANG_WARN_UNREACHABLE_CODE = YES; 346 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 347 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 348 | COPY_PHASE_STRIP = NO; 349 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 350 | ENABLE_NS_ASSERTIONS = NO; 351 | ENABLE_STRICT_OBJC_MSGSEND = YES; 352 | GCC_C_LANGUAGE_STANDARD = gnu99; 353 | GCC_NO_COMMON_BLOCKS = YES; 354 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 355 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 356 | GCC_WARN_UNDECLARED_SELECTOR = YES; 357 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 358 | GCC_WARN_UNUSED_FUNCTION = YES; 359 | GCC_WARN_UNUSED_VARIABLE = YES; 360 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 361 | MTL_ENABLE_DEBUG_INFO = NO; 362 | SDKROOT = iphoneos; 363 | TARGETED_DEVICE_FAMILY = "1,2"; 364 | VALIDATE_PRODUCT = YES; 365 | }; 366 | name = Release; 367 | }; 368 | 97C147061CF9000F007C117D /* Debug */ = { 369 | isa = XCBuildConfiguration; 370 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 371 | buildSettings = { 372 | ARCHS = arm64; 373 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 374 | DEVELOPMENT_TEAM = 3F25347H8E; 375 | ENABLE_BITCODE = NO; 376 | FRAMEWORK_SEARCH_PATHS = ( 377 | "$(inherited)", 378 | "$(PROJECT_DIR)/Flutter", 379 | ); 380 | INFOPLIST_FILE = Runner/Info.plist; 381 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 382 | LIBRARY_SEARCH_PATHS = ( 383 | "$(inherited)", 384 | "$(PROJECT_DIR)/Flutter", 385 | ); 386 | PRODUCT_BUNDLE_IDENTIFIER = com.example.dribbledanimation; 387 | PRODUCT_NAME = "$(TARGET_NAME)"; 388 | }; 389 | name = Debug; 390 | }; 391 | 97C147071CF9000F007C117D /* Release */ = { 392 | isa = XCBuildConfiguration; 393 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 394 | buildSettings = { 395 | ARCHS = arm64; 396 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 397 | DEVELOPMENT_TEAM = 3F25347H8E; 398 | ENABLE_BITCODE = NO; 399 | FRAMEWORK_SEARCH_PATHS = ( 400 | "$(inherited)", 401 | "$(PROJECT_DIR)/Flutter", 402 | ); 403 | INFOPLIST_FILE = Runner/Info.plist; 404 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 405 | LIBRARY_SEARCH_PATHS = ( 406 | "$(inherited)", 407 | "$(PROJECT_DIR)/Flutter", 408 | ); 409 | PRODUCT_BUNDLE_IDENTIFIER = com.example.dribbledanimation; 410 | PRODUCT_NAME = "$(TARGET_NAME)"; 411 | }; 412 | name = Release; 413 | }; 414 | /* End XCBuildConfiguration section */ 415 | 416 | /* Begin XCConfigurationList section */ 417 | 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { 418 | isa = XCConfigurationList; 419 | buildConfigurations = ( 420 | 97C147031CF9000F007C117D /* Debug */, 421 | 97C147041CF9000F007C117D /* Release */, 422 | ); 423 | defaultConfigurationIsVisible = 0; 424 | defaultConfigurationName = Release; 425 | }; 426 | 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { 427 | isa = XCConfigurationList; 428 | buildConfigurations = ( 429 | 97C147061CF9000F007C117D /* Debug */, 430 | 97C147071CF9000F007C117D /* Release */, 431 | ); 432 | defaultConfigurationIsVisible = 0; 433 | defaultConfigurationName = Release; 434 | }; 435 | /* End XCConfigurationList section */ 436 | }; 437 | rootObject = 97C146E61CF9000F007C117D /* Project object */; 438 | } 439 | --------------------------------------------------------------------------------