├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── smart_home_animation │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets └── images │ ├── 0.jpeg │ ├── 1.jpeg │ ├── 2.jpeg │ ├── 3.jpeg │ └── 4.jpeg ├── gif.gif ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── 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-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h └── RunnerTests │ └── RunnerTests.swift ├── lib ├── core │ ├── app │ │ └── app.dart │ ├── core.dart │ ├── shared │ │ ├── domain │ │ │ ├── domain.dart │ │ │ └── entities │ │ │ │ ├── entities.dart │ │ │ │ ├── music_info.dart │ │ │ │ ├── smart_device.dart │ │ │ │ └── smart_room.dart │ │ ├── presentation │ │ │ ├── presentation.dart │ │ │ └── widgets │ │ │ │ ├── blue_dot_light.dart │ │ │ │ ├── parallax_image_card.dart │ │ │ │ ├── room_card.dart │ │ │ │ ├── sh_app_bar.dart │ │ │ │ ├── sh_card.dart │ │ │ │ ├── sh_divider.dart │ │ │ │ ├── sh_switcher.dart │ │ │ │ ├── shimmer_arrows.dart │ │ │ │ └── widgets.dart │ │ └── shared.dart │ └── theme │ │ ├── sh_colors.dart │ │ ├── sh_icons.dart │ │ ├── sh_theme.dart │ │ └── theme.dart ├── features │ ├── home │ │ └── presentation │ │ │ ├── screens │ │ │ └── home_screen.dart │ │ │ └── widgets │ │ │ ├── background_room_lights.dart │ │ │ ├── lighted_background.dart │ │ │ ├── page_indicators.dart │ │ │ ├── sm_home_bottom_navigation.dart │ │ │ └── smart_room_page_view.dart │ └── smart_room │ │ ├── screens │ │ └── room_details_screen.dart │ │ └── widgets │ │ ├── air_conditiioner_controls_card.dart │ │ ├── light_and_time_switcher.dart │ │ ├── light_intensity_slide_card.dart │ │ ├── music_switchers.dart │ │ └── room_details_page_view.dart └── main.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── main.cc ├── my_application.cc └── my_application.h ├── pubspec.lock ├── pubspec.yaml ├── test └── widget_test.dart └── ui.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/.metadata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/smart_home_animation/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/android/app/src/main/kotlin/com/example/smart_home_animation/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/images/0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/assets/images/0.jpeg -------------------------------------------------------------------------------- /assets/images/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/assets/images/1.jpeg -------------------------------------------------------------------------------- /assets/images/2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/assets/images/2.jpeg -------------------------------------------------------------------------------- /assets/images/3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/assets/images/3.jpeg -------------------------------------------------------------------------------- /assets/images/4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/assets/images/4.jpeg -------------------------------------------------------------------------------- /gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/gif.gif -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /lib/core/app/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/core/app/app.dart -------------------------------------------------------------------------------- /lib/core/core.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/core/core.dart -------------------------------------------------------------------------------- /lib/core/shared/domain/domain.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/core/shared/domain/domain.dart -------------------------------------------------------------------------------- /lib/core/shared/domain/entities/entities.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/core/shared/domain/entities/entities.dart -------------------------------------------------------------------------------- /lib/core/shared/domain/entities/music_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/core/shared/domain/entities/music_info.dart -------------------------------------------------------------------------------- /lib/core/shared/domain/entities/smart_device.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/core/shared/domain/entities/smart_device.dart -------------------------------------------------------------------------------- /lib/core/shared/domain/entities/smart_room.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/core/shared/domain/entities/smart_room.dart -------------------------------------------------------------------------------- /lib/core/shared/presentation/presentation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/core/shared/presentation/presentation.dart -------------------------------------------------------------------------------- /lib/core/shared/presentation/widgets/blue_dot_light.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/core/shared/presentation/widgets/blue_dot_light.dart -------------------------------------------------------------------------------- /lib/core/shared/presentation/widgets/parallax_image_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/core/shared/presentation/widgets/parallax_image_card.dart -------------------------------------------------------------------------------- /lib/core/shared/presentation/widgets/room_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/core/shared/presentation/widgets/room_card.dart -------------------------------------------------------------------------------- /lib/core/shared/presentation/widgets/sh_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/core/shared/presentation/widgets/sh_app_bar.dart -------------------------------------------------------------------------------- /lib/core/shared/presentation/widgets/sh_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/core/shared/presentation/widgets/sh_card.dart -------------------------------------------------------------------------------- /lib/core/shared/presentation/widgets/sh_divider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/core/shared/presentation/widgets/sh_divider.dart -------------------------------------------------------------------------------- /lib/core/shared/presentation/widgets/sh_switcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/core/shared/presentation/widgets/sh_switcher.dart -------------------------------------------------------------------------------- /lib/core/shared/presentation/widgets/shimmer_arrows.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/core/shared/presentation/widgets/shimmer_arrows.dart -------------------------------------------------------------------------------- /lib/core/shared/presentation/widgets/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/core/shared/presentation/widgets/widgets.dart -------------------------------------------------------------------------------- /lib/core/shared/shared.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/core/shared/shared.dart -------------------------------------------------------------------------------- /lib/core/theme/sh_colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/core/theme/sh_colors.dart -------------------------------------------------------------------------------- /lib/core/theme/sh_icons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/core/theme/sh_icons.dart -------------------------------------------------------------------------------- /lib/core/theme/sh_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/core/theme/sh_theme.dart -------------------------------------------------------------------------------- /lib/core/theme/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/core/theme/theme.dart -------------------------------------------------------------------------------- /lib/features/home/presentation/screens/home_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/features/home/presentation/screens/home_screen.dart -------------------------------------------------------------------------------- /lib/features/home/presentation/widgets/background_room_lights.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/features/home/presentation/widgets/background_room_lights.dart -------------------------------------------------------------------------------- /lib/features/home/presentation/widgets/lighted_background.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/features/home/presentation/widgets/lighted_background.dart -------------------------------------------------------------------------------- /lib/features/home/presentation/widgets/page_indicators.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/features/home/presentation/widgets/page_indicators.dart -------------------------------------------------------------------------------- /lib/features/home/presentation/widgets/sm_home_bottom_navigation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/features/home/presentation/widgets/sm_home_bottom_navigation.dart -------------------------------------------------------------------------------- /lib/features/home/presentation/widgets/smart_room_page_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/features/home/presentation/widgets/smart_room_page_view.dart -------------------------------------------------------------------------------- /lib/features/smart_room/screens/room_details_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/features/smart_room/screens/room_details_screen.dart -------------------------------------------------------------------------------- /lib/features/smart_room/widgets/air_conditiioner_controls_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/features/smart_room/widgets/air_conditiioner_controls_card.dart -------------------------------------------------------------------------------- /lib/features/smart_room/widgets/light_and_time_switcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/features/smart_room/widgets/light_and_time_switcher.dart -------------------------------------------------------------------------------- /lib/features/smart_room/widgets/light_intensity_slide_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/features/smart_room/widgets/light_intensity_slide_card.dart -------------------------------------------------------------------------------- /lib/features/smart_room/widgets/music_switchers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/features/smart_room/widgets/music_switchers.dart -------------------------------------------------------------------------------- /lib/features/smart_room/widgets/room_details_page_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/features/smart_room/widgets/room_details_page_view.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/lib/main.dart -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/linux/main.cc -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/linux/my_application.cc -------------------------------------------------------------------------------- /linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/linux/my_application.h -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/test/widget_test.dart -------------------------------------------------------------------------------- /ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainwen9/Home-Animation/HEAD/ui.png --------------------------------------------------------------------------------