├── 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 ├── 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 └── pubspec.yaml /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/smart_home_animation/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/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/muhammadsufyan786/Home-Animation-App/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/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/muhammadsufyan786/Home-Animation-App/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/muhammadsufyan786/Home-Animation-App/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/muhammadsufyan786/Home-Animation-App/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/muhammadsufyan786/Home-Animation-App/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/images/0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/assets/images/0.jpeg -------------------------------------------------------------------------------- /assets/images/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/assets/images/1.jpeg -------------------------------------------------------------------------------- /assets/images/2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/assets/images/2.jpeg -------------------------------------------------------------------------------- /assets/images/3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/assets/images/3.jpeg -------------------------------------------------------------------------------- /assets/images/4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/assets/images/4.jpeg -------------------------------------------------------------------------------- /lib/core/app/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/lib/core/app/app.dart -------------------------------------------------------------------------------- /lib/core/core.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/lib/core/core.dart -------------------------------------------------------------------------------- /lib/core/shared/domain/domain.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/lib/core/shared/domain/domain.dart -------------------------------------------------------------------------------- /lib/core/shared/domain/entities/entities.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/lib/core/shared/domain/entities/entities.dart -------------------------------------------------------------------------------- /lib/core/shared/domain/entities/music_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/lib/core/shared/domain/entities/music_info.dart -------------------------------------------------------------------------------- /lib/core/shared/domain/entities/smart_device.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/lib/core/shared/domain/entities/smart_device.dart -------------------------------------------------------------------------------- /lib/core/shared/domain/entities/smart_room.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/lib/core/shared/domain/entities/smart_room.dart -------------------------------------------------------------------------------- /lib/core/shared/presentation/presentation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/lib/core/shared/presentation/presentation.dart -------------------------------------------------------------------------------- /lib/core/shared/presentation/widgets/blue_dot_light.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/lib/core/shared/presentation/widgets/blue_dot_light.dart -------------------------------------------------------------------------------- /lib/core/shared/presentation/widgets/parallax_image_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/lib/core/shared/presentation/widgets/parallax_image_card.dart -------------------------------------------------------------------------------- /lib/core/shared/presentation/widgets/room_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/lib/core/shared/presentation/widgets/room_card.dart -------------------------------------------------------------------------------- /lib/core/shared/presentation/widgets/sh_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/lib/core/shared/presentation/widgets/sh_app_bar.dart -------------------------------------------------------------------------------- /lib/core/shared/presentation/widgets/sh_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/lib/core/shared/presentation/widgets/sh_card.dart -------------------------------------------------------------------------------- /lib/core/shared/presentation/widgets/sh_divider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/lib/core/shared/presentation/widgets/sh_divider.dart -------------------------------------------------------------------------------- /lib/core/shared/presentation/widgets/sh_switcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/lib/core/shared/presentation/widgets/sh_switcher.dart -------------------------------------------------------------------------------- /lib/core/shared/presentation/widgets/shimmer_arrows.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/lib/core/shared/presentation/widgets/shimmer_arrows.dart -------------------------------------------------------------------------------- /lib/core/shared/presentation/widgets/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/lib/core/shared/presentation/widgets/widgets.dart -------------------------------------------------------------------------------- /lib/core/shared/shared.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/lib/core/shared/shared.dart -------------------------------------------------------------------------------- /lib/core/theme/sh_colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/lib/core/theme/sh_colors.dart -------------------------------------------------------------------------------- /lib/core/theme/sh_icons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/lib/core/theme/sh_icons.dart -------------------------------------------------------------------------------- /lib/core/theme/sh_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/lib/core/theme/sh_theme.dart -------------------------------------------------------------------------------- /lib/core/theme/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/lib/core/theme/theme.dart -------------------------------------------------------------------------------- /lib/features/home/presentation/screens/home_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/lib/features/home/presentation/screens/home_screen.dart -------------------------------------------------------------------------------- /lib/features/home/presentation/widgets/background_room_lights.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/lib/features/home/presentation/widgets/background_room_lights.dart -------------------------------------------------------------------------------- /lib/features/home/presentation/widgets/lighted_background.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/lib/features/home/presentation/widgets/lighted_background.dart -------------------------------------------------------------------------------- /lib/features/home/presentation/widgets/page_indicators.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/lib/features/home/presentation/widgets/page_indicators.dart -------------------------------------------------------------------------------- /lib/features/home/presentation/widgets/sm_home_bottom_navigation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/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/muhammadsufyan786/Home-Animation-App/HEAD/lib/features/home/presentation/widgets/smart_room_page_view.dart -------------------------------------------------------------------------------- /lib/features/smart_room/screens/room_details_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/lib/features/smart_room/screens/room_details_screen.dart -------------------------------------------------------------------------------- /lib/features/smart_room/widgets/air_conditiioner_controls_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/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/muhammadsufyan786/Home-Animation-App/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/muhammadsufyan786/Home-Animation-App/HEAD/lib/features/smart_room/widgets/light_intensity_slide_card.dart -------------------------------------------------------------------------------- /lib/features/smart_room/widgets/music_switchers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/lib/features/smart_room/widgets/music_switchers.dart -------------------------------------------------------------------------------- /lib/features/smart_room/widgets/room_details_page_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/lib/features/smart_room/widgets/room_details_page_view.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/lib/main.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadsufyan786/Home-Animation-App/HEAD/pubspec.yaml --------------------------------------------------------------------------------