├── ios ├── Flutter │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── AppFrameworkInfo.plist ├── Runner │ ├── Runner-Bridging-Header.h │ ├── 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.swift │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── Main.storyboard │ │ └── LaunchScreen.storyboard │ └── Info.plist ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── WorkspaceSettings.xcsettings │ │ └── IDEWorkspaceChecks.plist ├── Runner.xcodeproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── WorkspaceSettings.xcsettings │ │ │ └── IDEWorkspaceChecks.plist │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ └── project.pbxproj └── .gitignore ├── assets ├── c1.jpg ├── c2.jpg ├── c4.jpeg ├── c5.jpeg ├── elon.jpg ├── joe.webp ├── putin.jpeg └── clubhouse.png ├── android ├── gradle.properties ├── app │ ├── src │ │ ├── main │ │ │ ├── res │ │ │ │ ├── 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 │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable-v21 │ │ │ │ │ └── launch_background.xml │ │ │ │ ├── values │ │ │ │ │ └── styles.xml │ │ │ │ └── values-night │ │ │ │ │ └── styles.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── clubhouse │ │ │ │ │ └── MainActivity.java │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── flutter_clubhouse_app_web_desktop │ │ │ │ │ └── MainActivity.kt │ │ │ └── AndroidManifest.xml │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ └── profile │ │ │ └── AndroidManifest.xml │ └── build.gradle ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── .gitignore ├── settings.gradle └── build.gradle ├── web ├── favicon.png ├── icons │ ├── Icon-192.png │ └── Icon-512.png ├── manifest.json └── index.html ├── lib ├── Modules │ ├── Member.dart │ ├── Room.dart │ └── Data.dart ├── main.dart ├── Widgets │ ├── ImageContainer.dart │ ├── ResponsiveUI.dart │ └── RoomContainer.dart └── Screens │ ├── HomeScreen.dart │ ├── MobileHomeScreen.dart │ ├── WebHomeScreen.dart │ └── RoomScreen.dart ├── README.md ├── .metadata ├── .gitignore ├── test └── widget_test.dart ├── pubspec.yaml └── pubspec.lock /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /assets/c1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/HEAD/assets/c1.jpg -------------------------------------------------------------------------------- /assets/c2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/HEAD/assets/c2.jpg -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.useAndroidX=true 3 | android.enableJetifier=true 4 | -------------------------------------------------------------------------------- /assets/c4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/HEAD/assets/c4.jpeg -------------------------------------------------------------------------------- /assets/c5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/HEAD/assets/c5.jpeg -------------------------------------------------------------------------------- /assets/elon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/HEAD/assets/elon.jpg -------------------------------------------------------------------------------- /assets/joe.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/HEAD/assets/joe.webp -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/HEAD/web/favicon.png -------------------------------------------------------------------------------- /assets/putin.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/HEAD/assets/putin.jpeg -------------------------------------------------------------------------------- /assets/clubhouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/HEAD/assets/clubhouse.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /lib/Modules/Member.dart: -------------------------------------------------------------------------------- 1 | class Member { 2 | String name; 3 | String profilePicture; 4 | 5 | Member({ 6 | this.name, 7 | this.profilePicture, 8 | }); 9 | } 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Flutter Clubhouse 2 | 3 | Flutter 2 Clubhouse app and web 4 | 5 | ## YouTube Link: 6 | 7 | - [Flutter 2.0 Clubhouse App & Web | Responsive UI](https://youtu.be/p-s6GfGH_8c) 8 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/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/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/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/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/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/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/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/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/java/com/clubhouse/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.clubhouse; 2 | 3 | import io.flutter.embedding.android.FlutterActivity; 4 | 5 | public class MainActivity extends FlutterActivity { 6 | } 7 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/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/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/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/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/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/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/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/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/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/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/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/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/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/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/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/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/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/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/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/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/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/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/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/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudHesham099/Flutter-Clubhouse-App-Web-Responsive_UI/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/flutter_clubhouse_app_web_desktop/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.flutter_clubhouse_app_web_desktop 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /lib/Modules/Room.dart: -------------------------------------------------------------------------------- 1 | import 'package:clubhouse/Modules/Member.dart'; 2 | 3 | class Room { 4 | String name; 5 | List speakers; 6 | List audience; 7 | 8 | Room({ 9 | this.name, 10 | this.speakers, 11 | this.audience, 12 | }); 13 | } 14 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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-5.6.2-all.zip 7 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | 9 | # Remember to never publicly share your keystore. 10 | # See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app 11 | key.properties 12 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.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: 8874f21e79d7ec66d0457c7ab338348e31b17f1d 8 | channel: stable 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /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. -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'package:clubhouse/Screens/HomeScreen.dart'; 2 | import 'package:flutter/material.dart'; 3 | 4 | void main() { 5 | runApp(MyApp()); 6 | } 7 | 8 | class MyApp extends StatelessWidget { 9 | @override 10 | Widget build(BuildContext context) { 11 | return MaterialApp( 12 | debugShowCheckedModeBanner: false, 13 | home: HomeScreen(), 14 | ); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Flutter 3 | 4 | @UIApplicationMain 5 | @objc class AppDelegate: FlutterAppDelegate { 6 | override func application( 7 | _ application: UIApplication, 8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? 9 | ) -> Bool { 10 | GeneratedPluginRegistrant.register(with: self) 11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- 1 | #import "AppDelegate.h" 2 | #import "GeneratedPluginRegistrant.h" 3 | 4 | @implementation AppDelegate 5 | 6 | - (BOOL)application:(UIApplication *)application 7 | didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 8 | [GeneratedPluginRegistrant registerWithRegistry:self]; 9 | // Override point for customization after application launch. 10 | return [super application:application didFinishLaunchingWithOptions:launchOptions]; 11 | } 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | 3 | def localPropertiesFile = new File(rootProject.projectDir, "local.properties") 4 | def properties = new Properties() 5 | 6 | assert localPropertiesFile.exists() 7 | localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) } 8 | 9 | def flutterSdkPath = properties.getProperty("flutter.sdk") 10 | assert flutterSdkPath != null, "flutter.sdk not set in local.properties" 11 | apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle" 12 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | repositories { 3 | google() 4 | jcenter() 5 | } 6 | 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:3.5.0' 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 | -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- 1 | *.mode1v3 2 | *.mode2v3 3 | *.moved-aside 4 | *.pbxuser 5 | *.perspectivev3 6 | **/*sync/ 7 | .sconsign.dblite 8 | .tags* 9 | **/.vagrant/ 10 | **/DerivedData/ 11 | Icon? 12 | **/Pods/ 13 | **/.symlinks/ 14 | profile 15 | xcuserdata 16 | **/.generated/ 17 | Flutter/App.framework 18 | Flutter/Flutter.framework 19 | Flutter/Flutter.podspec 20 | Flutter/Generated.xcconfig 21 | Flutter/app.flx 22 | Flutter/app.zip 23 | Flutter/flutter_assets/ 24 | Flutter/flutter_export_environment.sh 25 | ServiceDefinitions.json 26 | Runner/GeneratedPluginRegistrant.* 27 | 28 | # Exceptions to above rules. 29 | !default.mode1v3 30 | !default.mode2v3 31 | !default.pbxuser 32 | !default.perspectivev3 33 | -------------------------------------------------------------------------------- /lib/Widgets/ImageContainer.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class ImageContainer extends StatelessWidget { 4 | final double width; 5 | final double height; 6 | final String image; 7 | 8 | const ImageContainer({Key key, this.width, this.height, this.image}) 9 | : super(key: key); 10 | 11 | @override 12 | Widget build(BuildContext context) { 13 | return Container( 14 | width: width, 15 | height: height, 16 | child: ClipRRect( 17 | borderRadius: BorderRadius.circular(height * 0.4), 18 | child: FittedBox( 19 | fit: BoxFit.cover, 20 | child: Image.asset(image), 21 | ), 22 | ), 23 | ); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "flutter_clubhouse_app_web_desktop", 3 | "short_name": "flutter_clubhouse_app_web_desktop", 4 | "start_url": ".", 5 | "display": "standalone", 6 | "background_color": "#0175C2", 7 | "theme_color": "#0175C2", 8 | "description": "A new Flutter project.", 9 | "orientation": "portrait-primary", 10 | "prefer_related_applications": false, 11 | "icons": [ 12 | { 13 | "src": "icons/Icon-192.png", 14 | "sizes": "192x192", 15 | "type": "image/png" 16 | }, 17 | { 18 | "src": "icons/Icon-512.png", 19 | "sizes": "512x512", 20 | "type": "image/png" 21 | } 22 | ] 23 | } 24 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Miscellaneous 2 | *.class 3 | *.log 4 | *.pyc 5 | *.swp 6 | .DS_Store 7 | .atom/ 8 | .buildlog/ 9 | .history 10 | .svn/ 11 | 12 | # IntelliJ related 13 | *.iml 14 | *.ipr 15 | *.iws 16 | .idea/ 17 | 18 | # The .vscode folder contains launch configuration and tasks you configure in 19 | # VS Code which you may wish to be included in version control, so this line 20 | # is commented out by default. 21 | #.vscode/ 22 | 23 | # Flutter/Dart/Pub related 24 | **/doc/api/ 25 | **/ios/Flutter/.last_build_id 26 | .dart_tool/ 27 | .flutter-plugins 28 | .flutter-plugins-dependencies 29 | .packages 30 | .pub-cache/ 31 | .pub/ 32 | /build/ 33 | 34 | # Web related 35 | lib/generated_plugin_registrant.dart 36 | 37 | # Symbolication related 38 | app.*.symbols 39 | 40 | # Obfuscation related 41 | app.*.map.json 42 | -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 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 | MinimumOSVersion 24 | 9.0 25 | 26 | 27 | -------------------------------------------------------------------------------- /lib/Widgets/ResponsiveUI.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class ResponsiveUI extends StatelessWidget { 4 | final Widget mobile; 5 | final Widget web; 6 | 7 | const ResponsiveUI({Key key, @required this.mobile, @required this.web}) 8 | : super(key: key); 9 | 10 | static bool isMobile(BuildContext context) { 11 | return MediaQuery.of(context).size.width < 900; 12 | } 13 | 14 | static bool isTablet(BuildContext context) { 15 | return MediaQuery.of(context).size.width < 1200 && 16 | MediaQuery.of(context).size.width > 800; 17 | } 18 | 19 | static bool isWeb(BuildContext context) { 20 | return MediaQuery.of(context).size.width > 1200; 21 | } 22 | 23 | @override 24 | Widget build(BuildContext context) { 25 | return LayoutBuilder(builder: (context, cons) { 26 | if (cons.maxWidth >= 900) { 27 | return web; 28 | } else { 29 | return mobile; 30 | } 31 | }); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- 1 | // This is a basic Flutter widget test. 2 | // 3 | // To perform an interaction with a widget in your test, use the WidgetTester 4 | // utility that Flutter provides. For example, you can send tap and scroll 5 | // gestures. You can also use WidgetTester to find child widgets in the widget 6 | // tree, read text, and verify that the values of widget properties are correct. 7 | 8 | import 'package:flutter/material.dart'; 9 | import 'package:flutter_test/flutter_test.dart'; 10 | 11 | import 'package:clubhouse/main.dart'; 12 | 13 | void main() { 14 | testWidgets('Counter increments smoke test', (WidgetTester tester) async { 15 | // Build our app and trigger a frame. 16 | await tester.pumpWidget(MyApp()); 17 | 18 | // Verify that our counter starts at 0. 19 | expect(find.text('0'), findsOneWidget); 20 | expect(find.text('1'), findsNothing); 21 | 22 | // Tap the '+' icon and trigger a frame. 23 | await tester.tap(find.byIcon(Icons.add)); 24 | await tester.pump(); 25 | 26 | // Verify that our counter has incremented. 27 | expect(find.text('0'), findsNothing); 28 | expect(find.text('1'), findsOneWidget); 29 | }); 30 | } 31 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | clubhouse 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | $(FLUTTER_BUILD_NAME) 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | $(FLUTTER_BUILD_NUMBER) 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UISupportedInterfaceOrientations 30 | 31 | UIInterfaceOrientationPortrait 32 | UIInterfaceOrientationLandscapeLeft 33 | UIInterfaceOrientationLandscapeRight 34 | 35 | UISupportedInterfaceOrientations~ipad 36 | 37 | UIInterfaceOrientationPortrait 38 | UIInterfaceOrientationPortraitUpsideDown 39 | UIInterfaceOrientationLandscapeLeft 40 | UIInterfaceOrientationLandscapeRight 41 | 42 | UIViewControllerBasedStatusBarAppearance 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | flutter_clubhouse_app_web_desktop 30 | 31 | 32 | 33 | 36 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /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 | def flutterVersionCode = localProperties.getProperty('flutter.versionCode') 15 | if (flutterVersionCode == null) { 16 | flutterVersionCode = '1' 17 | } 18 | 19 | def flutterVersionName = localProperties.getProperty('flutter.versionName') 20 | if (flutterVersionName == null) { 21 | flutterVersionName = '1.0' 22 | } 23 | 24 | apply plugin: 'com.android.application' 25 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" 26 | 27 | android { 28 | compileSdkVersion 29 29 | 30 | lintOptions { 31 | disable 'InvalidPackage' 32 | } 33 | 34 | defaultConfig { 35 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). 36 | applicationId "com.clubhouse" 37 | minSdkVersion 16 38 | targetSdkVersion 29 39 | versionCode flutterVersionCode.toInteger() 40 | versionName flutterVersionName 41 | } 42 | 43 | buildTypes { 44 | release { 45 | // TODO: Add your own signing config for the release build. 46 | // Signing with the debug keys for now, so `flutter run --release` works. 47 | signingConfig signingConfigs.debug 48 | } 49 | } 50 | } 51 | 52 | flutter { 53 | source '../..' 54 | } 55 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/Screens/HomeScreen.dart: -------------------------------------------------------------------------------- 1 | import 'package:clubhouse/Modules/Data.dart'; 2 | import 'package:clubhouse/Screens/MobileHomeScreen.dart'; 3 | import 'package:clubhouse/Screens/WebHomeScreen.dart'; 4 | import 'package:clubhouse/Widgets/ImageContainer.dart'; 5 | import 'package:clubhouse/Widgets/ResponsiveUI.dart'; 6 | import 'package:flutter/material.dart'; 7 | 8 | class HomeScreen extends StatefulWidget { 9 | @override 10 | _HomeScreenState createState() => _HomeScreenState(); 11 | } 12 | 13 | class _HomeScreenState extends State { 14 | @override 15 | Widget build(BuildContext context) { 16 | return Scaffold( 17 | backgroundColor: KClubhouseColor, 18 | appBar: ResponsiveUI.isMobile(context) 19 | ? AppBar( 20 | backgroundColor: KClubhouseColor, 21 | elevation: 0, 22 | title: Row( 23 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 24 | children: [ 25 | Icon( 26 | Icons.search, 27 | color: Colors.black, 28 | size: 30, 29 | ), 30 | Container( 31 | width: 220, 32 | child: Row( 33 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 34 | children: [ 35 | Icon( 36 | Icons.email_outlined, 37 | color: Colors.black, 38 | size: 30, 39 | ), 40 | Icon( 41 | Icons.calendar_today, 42 | color: Colors.black, 43 | size: 30, 44 | ), 45 | Icon( 46 | Icons.notifications_none, 47 | color: Colors.black, 48 | size: 30, 49 | ), 50 | ImageContainer( 51 | height: 35, 52 | width: 35, 53 | image: 'assets/c1.jpg', 54 | ), 55 | ], 56 | ), 57 | ), 58 | ], 59 | ), 60 | ) 61 | : AppBar( 62 | backgroundColor: KClubhouseColor, 63 | elevation: 0, 64 | title: Image.asset( 65 | 'assets/clubhouse.png', 66 | width: 200, 67 | ), 68 | ), 69 | body: ResponsiveUI( 70 | mobile: MobileHomeScreen(), 71 | web: WebHomeScreen(), 72 | ), 73 | ); 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 8 | 12 | 19 | 23 | 27 | 32 | 36 | 37 | 38 | 39 | 40 | 41 | 43 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: clubhouse 2 | description: A new Flutter application. 3 | 4 | # The following line prevents the package from being accidentally published to 5 | # pub.dev using `pub publish`. This is preferred for private packages. 6 | publish_to: 'none' # Remove this line if you wish to publish to pub.dev 7 | 8 | # The following defines the version and build number for your application. 9 | # A version number is three numbers separated by dots, like 1.2.43 10 | # followed by an optional build number separated by a +. 11 | # Both the version and the builder number may be overridden in flutter 12 | # build by specifying --build-name and --build-number, respectively. 13 | # In Android, build-name is used as versionName while build-number used as versionCode. 14 | # Read more about Android versioning at https://developer.android.com/studio/publish/versioning 15 | # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. 16 | # Read more about iOS versioning at 17 | # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html 18 | version: 1.0.0+1 19 | 20 | environment: 21 | sdk: ">=2.7.0 <3.0.0" 22 | 23 | dependencies: 24 | flutter: 25 | sdk: flutter 26 | 27 | 28 | # The following adds the Cupertino Icons font to your application. 29 | # Use with the CupertinoIcons class for iOS style icons. 30 | cupertino_icons: ^1.0.0 31 | page_transition: ^1.1.7+6 32 | 33 | dev_dependencies: 34 | flutter_test: 35 | sdk: flutter 36 | 37 | # For information on the generic Dart part of this file, see the 38 | # following page: https://dart.dev/tools/pub/pubspec 39 | 40 | # The following section is specific to Flutter. 41 | flutter: 42 | 43 | # The following line ensures that the Material Icons font is 44 | # included with your application, so that you can use the icons in 45 | # the material Icons class. 46 | uses-material-design: true 47 | 48 | # To add assets to your application, add an assets section, like this: 49 | assets: 50 | - assets/ 51 | # - images/a_dot_ham.jpeg 52 | 53 | # An image asset can refer to one or more resolution-specific "variants", see 54 | # https://flutter.dev/assets-and-images/#resolution-aware. 55 | 56 | # For details regarding adding assets from package dependencies, see 57 | # https://flutter.dev/assets-and-images/#from-packages 58 | 59 | # To add custom fonts to your application, add a fonts section here, 60 | # in this "flutter" section. Each entry in this list should have a 61 | # "family" key with the font family name, and a "fonts" key with a 62 | # list giving the asset and other descriptors for the font. For 63 | # example: 64 | # fonts: 65 | # - family: Schyler 66 | # fonts: 67 | # - asset: fonts/Schyler-Regular.ttf 68 | # - asset: fonts/Schyler-Italic.ttf 69 | # style: italic 70 | # - family: Trajan Pro 71 | # fonts: 72 | # - asset: fonts/TrajanPro.ttf 73 | # - asset: fonts/TrajanPro_Bold.ttf 74 | # weight: 700 75 | # 76 | # For details regarding fonts from package dependencies, 77 | # see https://flutter.dev/custom-fonts/#from-packages 78 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 39 | 40 | 41 | 42 | 43 | 44 | 54 | 56 | 62 | 63 | 64 | 65 | 66 | 67 | 73 | 75 | 81 | 82 | 83 | 84 | 86 | 87 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /lib/Screens/MobileHomeScreen.dart: -------------------------------------------------------------------------------- 1 | import 'package:clubhouse/Modules/Data.dart'; 2 | import 'package:clubhouse/Modules/Room.dart'; 3 | import 'package:clubhouse/Widgets/RoomContainer.dart'; 4 | import 'package:flutter/material.dart'; 5 | 6 | class MobileHomeScreen extends StatefulWidget { 7 | @override 8 | _MobileHomeScreenState createState() => _MobileHomeScreenState(); 9 | } 10 | 11 | class _MobileHomeScreenState extends State { 12 | @override 13 | Widget build(BuildContext context) { 14 | return Stack( 15 | children: [ 16 | ListView( 17 | children: [ 18 | ListView.builder( 19 | shrinkWrap: true, 20 | physics: NeverScrollableScrollPhysics(), 21 | itemCount: rooms.length, 22 | itemBuilder: (context, index) { 23 | Room room = rooms[index]; 24 | return RoomContainer( 25 | room: room, 26 | ); 27 | }, 28 | ), 29 | SizedBox(height: 100), 30 | ], 31 | ), 32 | Positioned( 33 | bottom: 0, 34 | right: 15, 35 | left: 15, 36 | child: Container( 37 | padding: EdgeInsets.only(bottom: 30), 38 | decoration: BoxDecoration( 39 | color: Colors.transparent, 40 | boxShadow: [ 41 | BoxShadow( 42 | color: KClubhouseColor.withOpacity(0.8), 43 | blurRadius: 1, 44 | offset: Offset(0, 25), 45 | ) 46 | ], 47 | ), 48 | child: Row( 49 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 50 | children: [ 51 | SizedBox(width: 45), 52 | Container( 53 | height: 50, 54 | width: 200, 55 | decoration: BoxDecoration( 56 | borderRadius: BorderRadius.circular(30), 57 | ), 58 | child: Material( 59 | borderRadius: BorderRadius.circular(30), 60 | color: Colors.green[600], 61 | child: MaterialButton( 62 | onPressed: () {}, 63 | child: Row( 64 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 65 | children: [ 66 | Icon( 67 | Icons.add, 68 | color: Colors.white, 69 | ), 70 | Text( 71 | 'Start a room', 72 | style: TextStyle( 73 | fontSize: 25, 74 | color: Colors.white, 75 | fontWeight: FontWeight.w500, 76 | ), 77 | ), 78 | ], 79 | ), 80 | ), 81 | ), 82 | ), 83 | Stack( 84 | children: [ 85 | Icon( 86 | Icons.view_list, 87 | size: 45, 88 | ), 89 | Positioned( 90 | right: 0, 91 | bottom: 5, 92 | child: Icon( 93 | Icons.circle, 94 | size: 20, 95 | color: Colors.green[600], 96 | ), 97 | ), 98 | ], 99 | ) 100 | ], 101 | ), 102 | ), 103 | ), 104 | ], 105 | ); 106 | } 107 | } 108 | -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- 1 | # Generated by pub 2 | # See https://dart.dev/tools/pub/glossary#lockfile 3 | packages: 4 | async: 5 | dependency: transitive 6 | description: 7 | name: async 8 | url: "https://pub.dartlang.org" 9 | source: hosted 10 | version: "2.5.0" 11 | boolean_selector: 12 | dependency: transitive 13 | description: 14 | name: boolean_selector 15 | url: "https://pub.dartlang.org" 16 | source: hosted 17 | version: "2.1.0" 18 | characters: 19 | dependency: transitive 20 | description: 21 | name: characters 22 | url: "https://pub.dartlang.org" 23 | source: hosted 24 | version: "1.1.0" 25 | charcode: 26 | dependency: transitive 27 | description: 28 | name: charcode 29 | url: "https://pub.dartlang.org" 30 | source: hosted 31 | version: "1.2.0" 32 | clock: 33 | dependency: transitive 34 | description: 35 | name: clock 36 | url: "https://pub.dartlang.org" 37 | source: hosted 38 | version: "1.1.0" 39 | collection: 40 | dependency: transitive 41 | description: 42 | name: collection 43 | url: "https://pub.dartlang.org" 44 | source: hosted 45 | version: "1.15.0" 46 | cupertino_icons: 47 | dependency: "direct main" 48 | description: 49 | name: cupertino_icons 50 | url: "https://pub.dartlang.org" 51 | source: hosted 52 | version: "1.0.0" 53 | fake_async: 54 | dependency: transitive 55 | description: 56 | name: fake_async 57 | url: "https://pub.dartlang.org" 58 | source: hosted 59 | version: "1.2.0" 60 | flutter: 61 | dependency: "direct main" 62 | description: flutter 63 | source: sdk 64 | version: "0.0.0" 65 | flutter_test: 66 | dependency: "direct dev" 67 | description: flutter 68 | source: sdk 69 | version: "0.0.0" 70 | matcher: 71 | dependency: transitive 72 | description: 73 | name: matcher 74 | url: "https://pub.dartlang.org" 75 | source: hosted 76 | version: "0.12.10" 77 | meta: 78 | dependency: transitive 79 | description: 80 | name: meta 81 | url: "https://pub.dartlang.org" 82 | source: hosted 83 | version: "1.3.0" 84 | page_transition: 85 | dependency: "direct main" 86 | description: 87 | name: page_transition 88 | url: "https://pub.dartlang.org" 89 | source: hosted 90 | version: "1.1.7+6" 91 | path: 92 | dependency: transitive 93 | description: 94 | name: path 95 | url: "https://pub.dartlang.org" 96 | source: hosted 97 | version: "1.8.0" 98 | sky_engine: 99 | dependency: transitive 100 | description: flutter 101 | source: sdk 102 | version: "0.0.99" 103 | source_span: 104 | dependency: transitive 105 | description: 106 | name: source_span 107 | url: "https://pub.dartlang.org" 108 | source: hosted 109 | version: "1.8.0" 110 | stack_trace: 111 | dependency: transitive 112 | description: 113 | name: stack_trace 114 | url: "https://pub.dartlang.org" 115 | source: hosted 116 | version: "1.10.0" 117 | stream_channel: 118 | dependency: transitive 119 | description: 120 | name: stream_channel 121 | url: "https://pub.dartlang.org" 122 | source: hosted 123 | version: "2.1.0" 124 | string_scanner: 125 | dependency: transitive 126 | description: 127 | name: string_scanner 128 | url: "https://pub.dartlang.org" 129 | source: hosted 130 | version: "1.1.0" 131 | term_glyph: 132 | dependency: transitive 133 | description: 134 | name: term_glyph 135 | url: "https://pub.dartlang.org" 136 | source: hosted 137 | version: "1.2.0" 138 | test_api: 139 | dependency: transitive 140 | description: 141 | name: test_api 142 | url: "https://pub.dartlang.org" 143 | source: hosted 144 | version: "0.2.19" 145 | typed_data: 146 | dependency: transitive 147 | description: 148 | name: typed_data 149 | url: "https://pub.dartlang.org" 150 | source: hosted 151 | version: "1.3.0" 152 | vector_math: 153 | dependency: transitive 154 | description: 155 | name: vector_math 156 | url: "https://pub.dartlang.org" 157 | source: hosted 158 | version: "2.1.0" 159 | sdks: 160 | dart: ">=2.12.0-0.0 <3.0.0" 161 | -------------------------------------------------------------------------------- /lib/Widgets/RoomContainer.dart: -------------------------------------------------------------------------------- 1 | import 'package:clubhouse/Modules/Room.dart'; 2 | import 'package:clubhouse/Screens/RoomScreen.dart'; 3 | import 'package:clubhouse/Widgets/ImageContainer.dart'; 4 | import 'package:flutter/material.dart'; 5 | import 'package:page_transition/page_transition.dart'; 6 | 7 | class RoomContainer extends StatelessWidget { 8 | final Room room; 9 | 10 | const RoomContainer({Key key, this.room}) : super(key: key); 11 | @override 12 | Widget build(BuildContext context) { 13 | return GestureDetector( 14 | onTap: () { 15 | Navigator.push( 16 | context, 17 | PageTransition( 18 | child: RoomScreen( 19 | room: room, 20 | ), 21 | type: PageTransitionType.bottomToTop, 22 | ), 23 | ); 24 | }, 25 | child: Container( 26 | width: MediaQuery.of(context).size.width, 27 | margin: EdgeInsets.all(15), 28 | padding: EdgeInsets.all(15), 29 | decoration: BoxDecoration( 30 | borderRadius: BorderRadius.circular(20), 31 | color: Colors.white, 32 | boxShadow: [ 33 | BoxShadow( 34 | color: Colors.black54.withOpacity(0.3), 35 | blurRadius: 1, 36 | offset: Offset(0, 1), 37 | ), 38 | ]), 39 | child: Column( 40 | crossAxisAlignment: CrossAxisAlignment.start, 41 | children: [ 42 | Text( 43 | room.name, 44 | style: TextStyle( 45 | fontSize: 18, 46 | letterSpacing: 1, 47 | fontWeight: FontWeight.w700, 48 | ), 49 | ), 50 | SizedBox(height: 20), 51 | Row( 52 | crossAxisAlignment: CrossAxisAlignment.start, 53 | children: [ 54 | Stack( 55 | children: [ 56 | Container( 57 | width: 80, 58 | height: 100, 59 | ), 60 | Positioned( 61 | right: 0, 62 | top: 20, 63 | child: ImageContainer( 64 | width: 45, 65 | height: 45, 66 | image: room.speakers[0].profilePicture, 67 | ), 68 | ), 69 | Positioned( 70 | left: 0, 71 | top: 0, 72 | child: ImageContainer( 73 | width: 45, 74 | height: 45, 75 | image: room.speakers[1].profilePicture, 76 | ), 77 | ), 78 | ], 79 | ), 80 | SizedBox(width: 20), 81 | Expanded( 82 | child: Column( 83 | children: [ 84 | ListView.builder( 85 | shrinkWrap: true, 86 | physics: NeverScrollableScrollPhysics(), 87 | itemCount: room.speakers.length, 88 | itemBuilder: (context, index) { 89 | return Padding( 90 | padding: const EdgeInsets.only(bottom: 10), 91 | child: Row( 92 | children: [ 93 | Text( 94 | room.speakers[index].name, 95 | style: TextStyle( 96 | fontSize: 18, 97 | letterSpacing: 1, 98 | fontWeight: FontWeight.w500, 99 | ), 100 | ), 101 | SizedBox(width: 10), 102 | Icon( 103 | Icons.chat_outlined, 104 | color: Colors.grey, 105 | size: 20, 106 | ), 107 | ], 108 | ), 109 | ); 110 | }), 111 | SizedBox(height: 10), 112 | Row( 113 | children: [ 114 | Text( 115 | room.audience.length.toString() + ' ', 116 | style: TextStyle( 117 | color: Colors.grey, 118 | ), 119 | ), 120 | Icon( 121 | Icons.person, 122 | color: Colors.grey, 123 | ), 124 | Text( 125 | ' / ' + room.speakers.length.toString() + ' ', 126 | style: TextStyle( 127 | color: Colors.grey, 128 | ), 129 | ), 130 | Icon( 131 | Icons.chat, 132 | color: Colors.grey, 133 | ), 134 | ], 135 | ) 136 | ], 137 | ), 138 | ) 139 | ], 140 | ) 141 | ], 142 | ), 143 | ), 144 | ); 145 | } 146 | } 147 | -------------------------------------------------------------------------------- /lib/Screens/WebHomeScreen.dart: -------------------------------------------------------------------------------- 1 | import 'package:clubhouse/Modules/Data.dart'; 2 | import 'package:clubhouse/Modules/Member.dart'; 3 | import 'package:clubhouse/Screens/MobileHomeScreen.dart'; 4 | import 'package:clubhouse/Widgets/ImageContainer.dart'; 5 | import 'package:clubhouse/Widgets/ResponsiveUI.dart'; 6 | import 'package:flutter/material.dart'; 7 | 8 | class WebHomeScreen extends StatefulWidget { 9 | @override 10 | _WebHomeScreenState createState() => _WebHomeScreenState(); 11 | } 12 | 13 | class _WebHomeScreenState extends State { 14 | @override 15 | Widget build(BuildContext context) { 16 | return Row( 17 | children: [ 18 | Flexible( 19 | flex: 2, 20 | child: Align( 21 | alignment: Alignment.centerLeft, 22 | child: Padding( 23 | padding: const EdgeInsets.only(left: 10, top: 20), 24 | child: Column( 25 | children: [ 26 | ListTile( 27 | leading: Icon( 28 | Icons.search, 29 | color: Colors.black, 30 | size: 30, 31 | ), 32 | title: ResponsiveUI.isTablet(context) 33 | ? null 34 | : Text( 35 | 'search', 36 | style: TextStyle( 37 | fontSize: 17, 38 | fontWeight: FontWeight.w500, 39 | ), 40 | ), 41 | ), 42 | SizedBox(height: 20), 43 | ListTile( 44 | leading: Icon( 45 | Icons.email_outlined, 46 | color: Colors.black, 47 | size: 30, 48 | ), 49 | title: ResponsiveUI.isTablet(context) 50 | ? null 51 | : Text( 52 | 'Invites', 53 | style: TextStyle( 54 | fontSize: 17, 55 | fontWeight: FontWeight.w500, 56 | ), 57 | ), 58 | ), 59 | SizedBox(height: 20), 60 | ListTile( 61 | leading: Icon( 62 | Icons.calendar_today, 63 | color: Colors.black, 64 | size: 30, 65 | ), 66 | title: ResponsiveUI.isTablet(context) 67 | ? null 68 | : Text( 69 | 'Upcoming', 70 | style: TextStyle( 71 | fontSize: 17, 72 | fontWeight: FontWeight.w500, 73 | ), 74 | ), 75 | ), 76 | SizedBox(height: 20), 77 | ListTile( 78 | leading: Icon( 79 | Icons.notifications_none, 80 | color: Colors.black, 81 | size: 30, 82 | ), 83 | title: ResponsiveUI.isTablet(context) 84 | ? null 85 | : Text( 86 | 'Notifications', 87 | style: TextStyle( 88 | fontSize: 17, 89 | fontWeight: FontWeight.w500, 90 | ), 91 | ), 92 | ), 93 | SizedBox(height: 20), 94 | ListTile( 95 | leading: ImageContainer( 96 | height: 35, 97 | width: 35, 98 | image: 'assets/c1.jpg', 99 | ), 100 | title: ResponsiveUI.isTablet(context) 101 | ? null 102 | : Text( 103 | 'Profile', 104 | style: TextStyle( 105 | fontSize: 17, 106 | fontWeight: FontWeight.w500, 107 | ), 108 | ), 109 | ), 110 | ], 111 | ), 112 | ), 113 | ), 114 | ), 115 | const Spacer(), 116 | Container( 117 | width: 600, 118 | child: MobileHomeScreen(), 119 | ), 120 | const Spacer(), 121 | Flexible( 122 | flex: 2, 123 | child: Align( 124 | alignment: Alignment.centerRight, 125 | child: Padding( 126 | padding: const EdgeInsets.only(left: 10, top: 20), 127 | child: Column( 128 | crossAxisAlignment: CrossAxisAlignment.start, 129 | children: [ 130 | Text( 131 | 'Available to chat', 132 | style: TextStyle( 133 | color: Colors.grey[500], 134 | fontSize: 15, 135 | fontWeight: FontWeight.w700, 136 | ), 137 | ), 138 | SizedBox(height: 20), 139 | ListView.builder( 140 | shrinkWrap: true, 141 | itemCount: available.length, 142 | itemBuilder: (context, index) { 143 | Member member = available[index]; 144 | return ListTile( 145 | leading: ImageContainer( 146 | height: 35, 147 | width: 35, 148 | image: member.profilePicture, 149 | ), 150 | title: ResponsiveUI.isTablet(context) 151 | ? null 152 | : Text( 153 | member.name, 154 | style: TextStyle( 155 | fontWeight: FontWeight.w500, 156 | ), 157 | ), 158 | trailing: IconButton( 159 | onPressed: () {}, 160 | icon: Icon( 161 | Icons.add_circle, 162 | color: Colors.green, 163 | ), 164 | ), 165 | ); 166 | }) 167 | ], 168 | ), 169 | ), 170 | ), 171 | ), 172 | ], 173 | ); 174 | } 175 | } 176 | -------------------------------------------------------------------------------- /lib/Modules/Data.dart: -------------------------------------------------------------------------------- 1 | import 'package:clubhouse/Modules/Member.dart'; 2 | import 'package:clubhouse/Modules/Room.dart'; 3 | import 'package:flutter/cupertino.dart'; 4 | 5 | const Color KClubhouseColor = Color(0xfff1efe4); 6 | 7 | final List available = [ 8 | Member( 9 | name: 'Do', 10 | profilePicture: 'assets/c1.jpg', 11 | ), 12 | Member( 13 | name: 'John', 14 | profilePicture: 'assets/c2.jpg', 15 | ), 16 | Member( 17 | name: 'Sara', 18 | profilePicture: 'assets/c4.jpeg', 19 | ), 20 | Member( 21 | name: 'Tyler', 22 | profilePicture: 'assets/c5.jpeg', 23 | ), 24 | Member( 25 | name: 'Rob', 26 | profilePicture: 'assets/c1.jpg', 27 | ), 28 | Member( 29 | name: 'Kal', 30 | profilePicture: 'assets/c5.jpeg', 31 | ), 32 | Member( 33 | name: 'Ade', 34 | profilePicture: 'assets/c4.jpeg', 35 | ), 36 | Member( 37 | name: 'Minh', 38 | profilePicture: 'assets/c2.jpg', 39 | ), 40 | ]; 41 | 42 | final List rooms = [ 43 | Room( 44 | name: 'Joe Rogan, Elon Musk & Vladimir Putin', 45 | speakers: [ 46 | Member( 47 | name: 'Joe Rogan', 48 | profilePicture: 'assets/joe.webp', 49 | ), 50 | Member( 51 | name: 'Elon Musk', 52 | profilePicture: 'assets/elon.jpg', 53 | ), 54 | Member( 55 | name: 'Vladimir Putin', 56 | profilePicture: 'assets/putin.jpeg', 57 | ), 58 | ], 59 | audience: [ 60 | Member( 61 | name: 'Rob', 62 | profilePicture: 'assets/c1.jpg', 63 | ), 64 | Member( 65 | name: 'John', 66 | profilePicture: 'assets/c2.jpg', 67 | ), 68 | Member( 69 | name: 'Sara', 70 | profilePicture: 'assets/c4.jpeg', 71 | ), 72 | Member( 73 | name: 'Tyler', 74 | profilePicture: 'assets/c5.jpeg', 75 | ), 76 | Member( 77 | name: 'Kal', 78 | profilePicture: 'assets/c5.jpeg', 79 | ), 80 | Member( 81 | name: 'Ade', 82 | profilePicture: 'assets/c4.jpeg', 83 | ), 84 | Member( 85 | name: 'Minh', 86 | profilePicture: 'assets/c2.jpg', 87 | ), 88 | Member( 89 | name: 'Do', 90 | profilePicture: 'assets/c1.jpg', 91 | ), 92 | Member( 93 | name: 'Rob', 94 | profilePicture: 'assets/c1.jpg', 95 | ), 96 | Member( 97 | name: 'John', 98 | profilePicture: 'assets/c2.jpg', 99 | ), 100 | Member( 101 | name: 'Sara', 102 | profilePicture: 'assets/c4.jpeg', 103 | ), 104 | Member( 105 | name: 'Tyler', 106 | profilePicture: 'assets/c5.jpeg', 107 | ), 108 | Member( 109 | name: 'Kal', 110 | profilePicture: 'assets/c5.jpeg', 111 | ), 112 | Member( 113 | name: 'Ade', 114 | profilePicture: 'assets/c4.jpeg', 115 | ), 116 | Member( 117 | name: 'Minh', 118 | profilePicture: 'assets/c2.jpg', 119 | ), 120 | Member( 121 | name: 'Do', 122 | profilePicture: 'assets/c1.jpg', 123 | ), 124 | Member( 125 | name: 'Rob', 126 | profilePicture: 'assets/c1.jpg', 127 | ), 128 | Member( 129 | name: 'John', 130 | profilePicture: 'assets/c2.jpg', 131 | ), 132 | Member( 133 | name: 'Sara', 134 | profilePicture: 'assets/c4.jpeg', 135 | ), 136 | Member( 137 | name: 'Tyler', 138 | profilePicture: 'assets/c5.jpeg', 139 | ), 140 | Member( 141 | name: 'Kal', 142 | profilePicture: 'assets/c5.jpeg', 143 | ), 144 | Member( 145 | name: 'Ade', 146 | profilePicture: 'assets/c4.jpeg', 147 | ), 148 | Member( 149 | name: 'Minh', 150 | profilePicture: 'assets/c2.jpg', 151 | ), 152 | Member( 153 | name: 'Do', 154 | profilePicture: 'assets/c1.jpg', 155 | ), 156 | Member( 157 | name: 'Rob', 158 | profilePicture: 'assets/c1.jpg', 159 | ), 160 | Member( 161 | name: 'John', 162 | profilePicture: 'assets/c2.jpg', 163 | ), 164 | Member( 165 | name: 'Sara', 166 | profilePicture: 'assets/c4.jpeg', 167 | ), 168 | Member( 169 | name: 'Tyler', 170 | profilePicture: 'assets/c5.jpeg', 171 | ), 172 | Member( 173 | name: 'Kal', 174 | profilePicture: 'assets/c5.jpeg', 175 | ), 176 | Member( 177 | name: 'Ade', 178 | profilePicture: 'assets/c4.jpeg', 179 | ), 180 | Member( 181 | name: 'Minh', 182 | profilePicture: 'assets/c2.jpg', 183 | ), 184 | Member( 185 | name: 'Do', 186 | profilePicture: 'assets/c1.jpg', 187 | ), 188 | ], 189 | ), 190 | Room( 191 | name: 'Personal Brand', 192 | speakers: [ 193 | Member( 194 | name: 'Rob', 195 | profilePicture: 'assets/c1.jpg', 196 | ), 197 | Member( 198 | name: 'John', 199 | profilePicture: 'assets/c2.jpg', 200 | ), 201 | Member( 202 | name: 'Sara', 203 | profilePicture: 'assets/c4.jpeg', 204 | ), 205 | Member( 206 | name: 'Tyler', 207 | profilePicture: 'assets/c5.jpeg', 208 | ), 209 | ], 210 | audience: [ 211 | Member( 212 | name: 'Rob', 213 | profilePicture: 'assets/c1.jpg', 214 | ), 215 | Member( 216 | name: 'John', 217 | profilePicture: 'assets/c2.jpg', 218 | ), 219 | Member( 220 | name: 'Sara', 221 | profilePicture: 'assets/c4.jpeg', 222 | ), 223 | Member( 224 | name: 'Tyler', 225 | profilePicture: 'assets/c5.jpeg', 226 | ), 227 | Member( 228 | name: 'Kal', 229 | profilePicture: 'assets/c5.jpeg', 230 | ), 231 | Member( 232 | name: 'Ade', 233 | profilePicture: 'assets/c4.jpeg', 234 | ), 235 | Member( 236 | name: 'Minh', 237 | profilePicture: 'assets/c2.jpg', 238 | ), 239 | Member( 240 | name: 'Do', 241 | profilePicture: 'assets/c1.jpg', 242 | ), 243 | ], 244 | ), 245 | Room( 246 | name: 'Photographers', 247 | speakers: [ 248 | Member( 249 | name: 'Sara', 250 | profilePicture: 'assets/c4.jpeg', 251 | ), 252 | Member( 253 | name: 'Tyler', 254 | profilePicture: 'assets/c5.jpeg', 255 | ), 256 | ], 257 | audience: [ 258 | Member( 259 | name: 'Rob', 260 | profilePicture: 'assets/c1.jpg', 261 | ), 262 | Member( 263 | name: 'John', 264 | profilePicture: 'assets/c2.jpg', 265 | ), 266 | Member( 267 | name: 'Sara', 268 | profilePicture: 'assets/c4.jpeg', 269 | ), 270 | Member( 271 | name: 'Tyler', 272 | profilePicture: 'assets/c5.jpeg', 273 | ), 274 | Member( 275 | name: 'Kal', 276 | profilePicture: 'assets/c5.jpeg', 277 | ), 278 | Member( 279 | name: 'Ade', 280 | profilePicture: 'assets/c4.jpeg', 281 | ), 282 | Member( 283 | name: 'Minh', 284 | profilePicture: 'assets/c2.jpg', 285 | ), 286 | Member( 287 | name: 'Do', 288 | profilePicture: 'assets/c1.jpg', 289 | ), 290 | ], 291 | ), 292 | Room( 293 | name: 'Personal Brand', 294 | speakers: [ 295 | Member( 296 | name: 'Rob', 297 | profilePicture: 'assets/c1.jpg', 298 | ), 299 | Member( 300 | name: 'John', 301 | profilePicture: 'assets/c2.jpg', 302 | ), 303 | Member( 304 | name: 'Sara', 305 | profilePicture: 'assets/c4.jpeg', 306 | ), 307 | Member( 308 | name: 'Tyler', 309 | profilePicture: 'assets/c5.jpeg', 310 | ), 311 | ], 312 | audience: [ 313 | Member( 314 | name: 'Rob', 315 | profilePicture: 'assets/c1.jpg', 316 | ), 317 | Member( 318 | name: 'John', 319 | profilePicture: 'assets/c2.jpg', 320 | ), 321 | Member( 322 | name: 'Sara', 323 | profilePicture: 'assets/c4.jpeg', 324 | ), 325 | Member( 326 | name: 'Tyler', 327 | profilePicture: 'assets/c5.jpeg', 328 | ), 329 | Member( 330 | name: 'Kal', 331 | profilePicture: 'assets/c5.jpeg', 332 | ), 333 | Member( 334 | name: 'Ade', 335 | profilePicture: 'assets/c4.jpeg', 336 | ), 337 | Member( 338 | name: 'Minh', 339 | profilePicture: 'assets/c2.jpg', 340 | ), 341 | Member( 342 | name: 'Do', 343 | profilePicture: 'assets/c1.jpg', 344 | ), 345 | ], 346 | ), 347 | Room( 348 | name: 'Photographers', 349 | speakers: [ 350 | Member( 351 | name: 'Sara', 352 | profilePicture: 'assets/c4.jpeg', 353 | ), 354 | Member( 355 | name: 'Tyler', 356 | profilePicture: 'assets/c5.jpeg', 357 | ), 358 | ], 359 | audience: [ 360 | Member( 361 | name: 'Rob', 362 | profilePicture: 'assets/c1.jpg', 363 | ), 364 | Member( 365 | name: 'John', 366 | profilePicture: 'assets/c2.jpg', 367 | ), 368 | Member( 369 | name: 'Sara', 370 | profilePicture: 'assets/c4.jpeg', 371 | ), 372 | Member( 373 | name: 'Tyler', 374 | profilePicture: 'assets/c5.jpeg', 375 | ), 376 | Member( 377 | name: 'Kal', 378 | profilePicture: 'assets/c5.jpeg', 379 | ), 380 | Member( 381 | name: 'Ade', 382 | profilePicture: 'assets/c4.jpeg', 383 | ), 384 | Member( 385 | name: 'Minh', 386 | profilePicture: 'assets/c2.jpg', 387 | ), 388 | Member( 389 | name: 'Do', 390 | profilePicture: 'assets/c1.jpg', 391 | ), 392 | ], 393 | ), 394 | Room( 395 | name: 'Photographers', 396 | speakers: [ 397 | Member( 398 | name: 'Sara', 399 | profilePicture: 'assets/c4.jpeg', 400 | ), 401 | Member( 402 | name: 'Tyler', 403 | profilePicture: 'assets/c5.jpeg', 404 | ), 405 | ], 406 | audience: [ 407 | Member( 408 | name: 'Rob', 409 | profilePicture: 'assets/c1.jpg', 410 | ), 411 | Member( 412 | name: 'John', 413 | profilePicture: 'assets/c2.jpg', 414 | ), 415 | Member( 416 | name: 'Sara', 417 | profilePicture: 'assets/c4.jpeg', 418 | ), 419 | Member( 420 | name: 'Tyler', 421 | profilePicture: 'assets/c5.jpeg', 422 | ), 423 | Member( 424 | name: 'Kal', 425 | profilePicture: 'assets/c5.jpeg', 426 | ), 427 | Member( 428 | name: 'Ade', 429 | profilePicture: 'assets/c4.jpeg', 430 | ), 431 | Member( 432 | name: 'Minh', 433 | profilePicture: 'assets/c2.jpg', 434 | ), 435 | Member( 436 | name: 'Do', 437 | profilePicture: 'assets/c1.jpg', 438 | ), 439 | ], 440 | ), 441 | ]; 442 | -------------------------------------------------------------------------------- /lib/Screens/RoomScreen.dart: -------------------------------------------------------------------------------- 1 | import 'package:clubhouse/Modules/Data.dart'; 2 | import 'package:clubhouse/Modules/Room.dart'; 3 | import 'package:clubhouse/Widgets/ImageContainer.dart'; 4 | import 'package:flutter/cupertino.dart'; 5 | import 'package:flutter/material.dart'; 6 | 7 | class RoomScreen extends StatefulWidget { 8 | final Room room; 9 | 10 | const RoomScreen({Key key, this.room}) : super(key: key); 11 | @override 12 | _RoomScreenState createState() => _RoomScreenState(); 13 | } 14 | 15 | class _RoomScreenState extends State { 16 | @override 17 | Widget build(BuildContext context) { 18 | return Scaffold( 19 | backgroundColor: KClubhouseColor, 20 | body: Center( 21 | child: Container( 22 | width: 600, 23 | child: SafeArea( 24 | child: Stack( 25 | children: [ 26 | Column( 27 | children: [ 28 | SizedBox(height: 20), 29 | Padding( 30 | padding: const EdgeInsets.symmetric(horizontal: 15), 31 | child: Row( 32 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 33 | children: [ 34 | GestureDetector( 35 | onTap: () { 36 | Navigator.pop(context); 37 | }, 38 | child: Row( 39 | children: [ 40 | Icon( 41 | Icons.keyboard_arrow_down, 42 | size: 40, 43 | ), 44 | Text( 45 | 'All rooms', 46 | style: TextStyle( 47 | fontSize: 20, 48 | fontWeight: FontWeight.w500, 49 | ), 50 | ) 51 | ], 52 | ), 53 | ), 54 | Row( 55 | children: [ 56 | Icon( 57 | Icons.insert_drive_file_outlined, 58 | color: Colors.black, 59 | size: 30, 60 | ), 61 | SizedBox(width: 30), 62 | ImageContainer( 63 | width: 35, 64 | height: 35, 65 | image: 'assets/c1.jpg', 66 | ), 67 | ], 68 | ) 69 | ], 70 | ), 71 | ), 72 | SizedBox(height: 20), 73 | Expanded( 74 | child: Container( 75 | padding: EdgeInsets.symmetric(horizontal: 20), 76 | decoration: BoxDecoration( 77 | color: Colors.white, 78 | borderRadius: BorderRadius.only( 79 | topRight: Radius.circular(50), 80 | topLeft: Radius.circular(50), 81 | ), 82 | ), 83 | child: ListView( 84 | children: [ 85 | SizedBox(height: 30), 86 | Row( 87 | children: [ 88 | Expanded( 89 | child: Text( 90 | widget.room.name, 91 | style: TextStyle( 92 | fontSize: 20, 93 | letterSpacing: 1, 94 | fontWeight: FontWeight.w700, 95 | ), 96 | ), 97 | ), 98 | Icon( 99 | Icons.more_horiz, 100 | size: 30, 101 | ), 102 | ], 103 | ), 104 | SizedBox(height: 30), 105 | Padding( 106 | padding: 107 | const EdgeInsets.symmetric(horizontal: 20), 108 | child: GridView.builder( 109 | shrinkWrap: true, 110 | scrollDirection: Axis.vertical, 111 | physics: NeverScrollableScrollPhysics(), 112 | gridDelegate: 113 | SliverGridDelegateWithFixedCrossAxisCount( 114 | crossAxisCount: 3, 115 | mainAxisSpacing: 20, 116 | crossAxisSpacing: 40, 117 | childAspectRatio: 0.8, 118 | ), 119 | itemCount: widget.room.speakers.length, 120 | itemBuilder: (_, index) { 121 | return Column( 122 | children: [ 123 | ImageContainer( 124 | width: 90, 125 | height: 90, 126 | image: widget.room.speakers[index] 127 | .profilePicture, 128 | ), 129 | SizedBox(height: 5), 130 | Row( 131 | mainAxisAlignment: 132 | MainAxisAlignment.center, 133 | children: [ 134 | Icon( 135 | Icons.stars, 136 | color: Colors.green, 137 | size: 15, 138 | ), 139 | Text( 140 | ' ' + 141 | widget.room.speakers[index].name 142 | .split(' ')[0], 143 | style: TextStyle( 144 | fontSize: 15, 145 | fontWeight: FontWeight.bold, 146 | ), 147 | ), 148 | ], 149 | ), 150 | ], 151 | ); 152 | }, 153 | ), 154 | ), 155 | SizedBox(height: 30), 156 | Text( 157 | 'Others in the room', 158 | style: TextStyle( 159 | color: Colors.grey[400], 160 | fontSize: 15, 161 | letterSpacing: 1, 162 | fontWeight: FontWeight.w700, 163 | ), 164 | ), 165 | SizedBox(height: 30), 166 | Padding( 167 | padding: 168 | const EdgeInsets.symmetric(horizontal: 20), 169 | child: GridView.builder( 170 | shrinkWrap: true, 171 | scrollDirection: Axis.vertical, 172 | physics: NeverScrollableScrollPhysics(), 173 | gridDelegate: 174 | SliverGridDelegateWithFixedCrossAxisCount( 175 | crossAxisCount: 4, 176 | mainAxisSpacing: 20, 177 | crossAxisSpacing: 30, 178 | childAspectRatio: 0.7, 179 | ), 180 | itemCount: widget.room.audience.length, 181 | itemBuilder: (_, index) { 182 | return Column( 183 | children: [ 184 | ImageContainer( 185 | width: 70, 186 | height: 70, 187 | image: widget.room.audience[index] 188 | .profilePicture, 189 | ), 190 | SizedBox(height: 5), 191 | Text( 192 | ' ' + 193 | widget.room.audience[index].name 194 | .split(' ')[0], 195 | style: TextStyle( 196 | fontSize: 15, 197 | fontWeight: FontWeight.bold, 198 | ), 199 | ), 200 | ], 201 | ); 202 | }, 203 | ), 204 | ), 205 | SizedBox(height: 100), 206 | ], 207 | ), 208 | ), 209 | ) 210 | ], 211 | ), 212 | Positioned( 213 | bottom: 0, 214 | left: 0, 215 | right: 0, 216 | child: Container( 217 | padding: EdgeInsets.only( 218 | bottom: 15, right: 30, left: 30, top: 10), 219 | color: Colors.white, 220 | child: Row( 221 | mainAxisAlignment: MainAxisAlignment.spaceBetween, 222 | children: [ 223 | Container( 224 | height: 50, 225 | width: 200, 226 | decoration: BoxDecoration( 227 | borderRadius: BorderRadius.circular(30), 228 | ), 229 | child: Material( 230 | borderRadius: BorderRadius.circular(30), 231 | color: Colors.grey[200], 232 | child: MaterialButton( 233 | onPressed: () { 234 | Navigator.pop(context); 235 | }, 236 | child: Row( 237 | mainAxisAlignment: 238 | MainAxisAlignment.spaceBetween, 239 | children: [ 240 | Text( 241 | '✌🏽', 242 | style: TextStyle( 243 | fontSize: 20, 244 | ), 245 | ), 246 | Text( 247 | 'Leave quietly', 248 | style: TextStyle( 249 | fontSize: 20, 250 | color: Colors.red, 251 | fontWeight: FontWeight.w500, 252 | ), 253 | ), 254 | ], 255 | ), 256 | ), 257 | ), 258 | ), 259 | Row( 260 | children: [ 261 | CircleAvatar( 262 | child: Icon( 263 | Icons.add, 264 | color: Colors.black, 265 | size: 30, 266 | ), 267 | radius: 25, 268 | backgroundColor: Colors.grey[200], 269 | ), 270 | SizedBox(width: 25), 271 | CircleAvatar( 272 | child: Text( 273 | '✋', 274 | style: TextStyle( 275 | fontSize: 30, 276 | ), 277 | ), 278 | radius: 25, 279 | backgroundColor: Colors.grey[200], 280 | ), 281 | ], 282 | ) 283 | ], 284 | ), 285 | ), 286 | ) 287 | ], 288 | ), 289 | ), 290 | ), 291 | ), 292 | ); 293 | } 294 | } 295 | -------------------------------------------------------------------------------- /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 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; 12 | 978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */; }; 13 | 97C146F31CF9000F007C117D /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 97C146F21CF9000F007C117D /* main.m */; }; 14 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; 15 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; 16 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; 17 | /* End PBXBuildFile section */ 18 | 19 | /* Begin PBXCopyFilesBuildPhase section */ 20 | 9705A1C41CF9048500538489 /* Embed Frameworks */ = { 21 | isa = PBXCopyFilesBuildPhase; 22 | buildActionMask = 2147483647; 23 | dstPath = ""; 24 | dstSubfolderSpec = 10; 25 | files = ( 26 | ); 27 | name = "Embed Frameworks"; 28 | runOnlyForDeploymentPostprocessing = 0; 29 | }; 30 | /* End PBXCopyFilesBuildPhase section */ 31 | 32 | /* Begin PBXFileReference section */ 33 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; 34 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; 35 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; 36 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; 37 | 7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; 38 | 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; 39 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; 40 | 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; 41 | 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; 42 | 97C146F21CF9000F007C117D /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 43 | 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 44 | 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 45 | 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 46 | 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 47 | /* End PBXFileReference section */ 48 | 49 | /* Begin PBXFrameworksBuildPhase section */ 50 | 97C146EB1CF9000F007C117D /* Frameworks */ = { 51 | isa = PBXFrameworksBuildPhase; 52 | buildActionMask = 2147483647; 53 | files = ( 54 | ); 55 | runOnlyForDeploymentPostprocessing = 0; 56 | }; 57 | /* End PBXFrameworksBuildPhase section */ 58 | 59 | /* Begin PBXGroup section */ 60 | 9740EEB11CF90186004384FC /* Flutter */ = { 61 | isa = PBXGroup; 62 | children = ( 63 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, 64 | 9740EEB21CF90195004384FC /* Debug.xcconfig */, 65 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, 66 | 9740EEB31CF90195004384FC /* Generated.xcconfig */, 67 | ); 68 | name = Flutter; 69 | sourceTree = ""; 70 | }; 71 | 97C146E51CF9000F007C117D = { 72 | isa = PBXGroup; 73 | children = ( 74 | 9740EEB11CF90186004384FC /* Flutter */, 75 | 97C146F01CF9000F007C117D /* Runner */, 76 | 97C146EF1CF9000F007C117D /* Products */, 77 | CF3B75C9A7D2FA2A4C99F110 /* Frameworks */, 78 | ); 79 | sourceTree = ""; 80 | }; 81 | 97C146EF1CF9000F007C117D /* Products */ = { 82 | isa = PBXGroup; 83 | children = ( 84 | 97C146EE1CF9000F007C117D /* Runner.app */, 85 | ); 86 | name = Products; 87 | sourceTree = ""; 88 | }; 89 | 97C146F01CF9000F007C117D /* Runner */ = { 90 | isa = PBXGroup; 91 | children = ( 92 | 7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */, 93 | 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */, 94 | 97C146FA1CF9000F007C117D /* Main.storyboard */, 95 | 97C146FD1CF9000F007C117D /* Assets.xcassets */, 96 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, 97 | 97C147021CF9000F007C117D /* Info.plist */, 98 | 97C146F11CF9000F007C117D /* Supporting Files */, 99 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, 100 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, 101 | ); 102 | path = Runner; 103 | sourceTree = ""; 104 | }; 105 | 97C146F11CF9000F007C117D /* Supporting Files */ = { 106 | isa = PBXGroup; 107 | children = ( 108 | 97C146F21CF9000F007C117D /* main.m */, 109 | ); 110 | name = "Supporting Files"; 111 | sourceTree = ""; 112 | }; 113 | /* End PBXGroup section */ 114 | 115 | /* Begin PBXNativeTarget section */ 116 | 97C146ED1CF9000F007C117D /* Runner */ = { 117 | isa = PBXNativeTarget; 118 | buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; 119 | buildPhases = ( 120 | 9740EEB61CF901F6004384FC /* Run Script */, 121 | 97C146EA1CF9000F007C117D /* Sources */, 122 | 97C146EB1CF9000F007C117D /* Frameworks */, 123 | 97C146EC1CF9000F007C117D /* Resources */, 124 | 9705A1C41CF9048500538489 /* Embed Frameworks */, 125 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */, 126 | ); 127 | buildRules = ( 128 | ); 129 | dependencies = ( 130 | ); 131 | name = Runner; 132 | productName = Runner; 133 | productReference = 97C146EE1CF9000F007C117D /* Runner.app */; 134 | productType = "com.apple.product-type.application"; 135 | }; 136 | /* End PBXNativeTarget section */ 137 | 138 | /* Begin PBXProject section */ 139 | 97C146E61CF9000F007C117D /* Project object */ = { 140 | isa = PBXProject; 141 | attributes = { 142 | LastUpgradeCheck = 1020; 143 | ORGANIZATIONNAME = ""; 144 | TargetAttributes = { 145 | 97C146ED1CF9000F007C117D = { 146 | CreatedOnToolsVersion = 7.3.1; 147 | }; 148 | }; 149 | }; 150 | buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; 151 | compatibilityVersion = "Xcode 9.3"; 152 | developmentRegion = en; 153 | hasScannedForEncodings = 0; 154 | knownRegions = ( 155 | en, 156 | Base, 157 | ); 158 | mainGroup = 97C146E51CF9000F007C117D; 159 | productRefGroup = 97C146EF1CF9000F007C117D /* Products */; 160 | projectDirPath = ""; 161 | projectRoot = ""; 162 | targets = ( 163 | 97C146ED1CF9000F007C117D /* Runner */, 164 | ); 165 | }; 166 | /* End PBXProject section */ 167 | 168 | /* Begin PBXResourcesBuildPhase section */ 169 | 97C146EC1CF9000F007C117D /* Resources */ = { 170 | isa = PBXResourcesBuildPhase; 171 | buildActionMask = 2147483647; 172 | files = ( 173 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, 174 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, 175 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, 176 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, 177 | ); 178 | runOnlyForDeploymentPostprocessing = 0; 179 | }; 180 | /* End PBXResourcesBuildPhase section */ 181 | 182 | /* Begin PBXShellScriptBuildPhase section */ 183 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { 184 | isa = PBXShellScriptBuildPhase; 185 | buildActionMask = 2147483647; 186 | files = ( 187 | ); 188 | inputPaths = ( 189 | ); 190 | name = "Thin Binary"; 191 | outputPaths = ( 192 | ); 193 | runOnlyForDeploymentPostprocessing = 0; 194 | shellPath = /bin/sh; 195 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; 196 | }; 197 | 9740EEB61CF901F6004384FC /* Run Script */ = { 198 | isa = PBXShellScriptBuildPhase; 199 | buildActionMask = 2147483647; 200 | files = ( 201 | ); 202 | inputPaths = ( 203 | ); 204 | name = "Run Script"; 205 | outputPaths = ( 206 | ); 207 | runOnlyForDeploymentPostprocessing = 0; 208 | shellPath = /bin/sh; 209 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; 210 | }; 211 | /* End PBXShellScriptBuildPhase section */ 212 | 213 | /* Begin PBXSourcesBuildPhase section */ 214 | 97C146EA1CF9000F007C117D /* Sources */ = { 215 | isa = PBXSourcesBuildPhase; 216 | buildActionMask = 2147483647; 217 | files = ( 218 | 978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */, 219 | 97C146F31CF9000F007C117D /* main.m in Sources */, 220 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, 221 | ); 222 | runOnlyForDeploymentPostprocessing = 0; 223 | }; 224 | /* End PBXSourcesBuildPhase section */ 225 | 226 | /* Begin PBXVariantGroup section */ 227 | 97C146FA1CF9000F007C117D /* Main.storyboard */ = { 228 | isa = PBXVariantGroup; 229 | children = ( 230 | 97C146FB1CF9000F007C117D /* Base */, 231 | ); 232 | name = Main.storyboard; 233 | sourceTree = ""; 234 | }; 235 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { 236 | isa = PBXVariantGroup; 237 | children = ( 238 | 97C147001CF9000F007C117D /* Base */, 239 | ); 240 | name = LaunchScreen.storyboard; 241 | sourceTree = ""; 242 | }; 243 | /* End PBXVariantGroup section */ 244 | 245 | /* Begin XCBuildConfiguration section */ 246 | 249021D3217E4FDB00AE95B9 /* Profile */ = { 247 | isa = XCBuildConfiguration; 248 | buildSettings = { 249 | ALWAYS_SEARCH_USER_PATHS = NO; 250 | CLANG_ANALYZER_NONNULL = YES; 251 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 252 | CLANG_CXX_LIBRARY = "libc++"; 253 | CLANG_ENABLE_MODULES = YES; 254 | CLANG_ENABLE_OBJC_ARC = YES; 255 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 256 | CLANG_WARN_BOOL_CONVERSION = YES; 257 | CLANG_WARN_COMMA = YES; 258 | CLANG_WARN_CONSTANT_CONVERSION = YES; 259 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 260 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 261 | CLANG_WARN_EMPTY_BODY = YES; 262 | CLANG_WARN_ENUM_CONVERSION = YES; 263 | CLANG_WARN_INFINITE_RECURSION = YES; 264 | CLANG_WARN_INT_CONVERSION = YES; 265 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 266 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 267 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 268 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 269 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 270 | CLANG_WARN_STRICT_PROTOTYPES = YES; 271 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 272 | CLANG_WARN_UNREACHABLE_CODE = YES; 273 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 274 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 275 | COPY_PHASE_STRIP = NO; 276 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 277 | ENABLE_NS_ASSERTIONS = NO; 278 | ENABLE_STRICT_OBJC_MSGSEND = YES; 279 | GCC_C_LANGUAGE_STANDARD = gnu99; 280 | GCC_NO_COMMON_BLOCKS = YES; 281 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 282 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 283 | GCC_WARN_UNDECLARED_SELECTOR = YES; 284 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 285 | GCC_WARN_UNUSED_FUNCTION = YES; 286 | GCC_WARN_UNUSED_VARIABLE = YES; 287 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 288 | MTL_ENABLE_DEBUG_INFO = NO; 289 | SDKROOT = iphoneos; 290 | SUPPORTED_PLATFORMS = iphoneos; 291 | TARGETED_DEVICE_FAMILY = "1,2"; 292 | VALIDATE_PRODUCT = YES; 293 | }; 294 | name = Profile; 295 | }; 296 | 249021D4217E4FDB00AE95B9 /* Profile */ = { 297 | isa = XCBuildConfiguration; 298 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 299 | buildSettings = { 300 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 301 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 302 | ENABLE_BITCODE = NO; 303 | FRAMEWORK_SEARCH_PATHS = ( 304 | "$(inherited)", 305 | "$(PROJECT_DIR)/Flutter", 306 | ); 307 | INFOPLIST_FILE = Runner/Info.plist; 308 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 309 | LIBRARY_SEARCH_PATHS = ( 310 | "$(inherited)", 311 | "$(PROJECT_DIR)/Flutter", 312 | ); 313 | PRODUCT_BUNDLE_IDENTIFIER = com.clubhouse; 314 | PRODUCT_NAME = "$(TARGET_NAME)"; 315 | VERSIONING_SYSTEM = "apple-generic"; 316 | }; 317 | name = Profile; 318 | }; 319 | 97C147031CF9000F007C117D /* Debug */ = { 320 | isa = XCBuildConfiguration; 321 | buildSettings = { 322 | ALWAYS_SEARCH_USER_PATHS = NO; 323 | CLANG_ANALYZER_NONNULL = YES; 324 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 325 | CLANG_CXX_LIBRARY = "libc++"; 326 | CLANG_ENABLE_MODULES = YES; 327 | CLANG_ENABLE_OBJC_ARC = YES; 328 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 329 | CLANG_WARN_BOOL_CONVERSION = YES; 330 | CLANG_WARN_COMMA = YES; 331 | CLANG_WARN_CONSTANT_CONVERSION = YES; 332 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 333 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 334 | CLANG_WARN_EMPTY_BODY = YES; 335 | CLANG_WARN_ENUM_CONVERSION = YES; 336 | CLANG_WARN_INFINITE_RECURSION = YES; 337 | CLANG_WARN_INT_CONVERSION = YES; 338 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 339 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = 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; 350 | ENABLE_STRICT_OBJC_MSGSEND = YES; 351 | ENABLE_TESTABILITY = YES; 352 | GCC_C_LANGUAGE_STANDARD = gnu99; 353 | GCC_DYNAMIC_NO_PIC = NO; 354 | GCC_NO_COMMON_BLOCKS = YES; 355 | GCC_OPTIMIZATION_LEVEL = 0; 356 | GCC_PREPROCESSOR_DEFINITIONS = ( 357 | "DEBUG=1", 358 | "$(inherited)", 359 | ); 360 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 361 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 362 | GCC_WARN_UNDECLARED_SELECTOR = YES; 363 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 364 | GCC_WARN_UNUSED_FUNCTION = YES; 365 | GCC_WARN_UNUSED_VARIABLE = YES; 366 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 367 | MTL_ENABLE_DEBUG_INFO = YES; 368 | ONLY_ACTIVE_ARCH = YES; 369 | SDKROOT = iphoneos; 370 | TARGETED_DEVICE_FAMILY = "1,2"; 371 | }; 372 | name = Debug; 373 | }; 374 | 97C147041CF9000F007C117D /* Release */ = { 375 | isa = XCBuildConfiguration; 376 | buildSettings = { 377 | ALWAYS_SEARCH_USER_PATHS = NO; 378 | CLANG_ANALYZER_NONNULL = YES; 379 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 380 | CLANG_CXX_LIBRARY = "libc++"; 381 | CLANG_ENABLE_MODULES = YES; 382 | CLANG_ENABLE_OBJC_ARC = YES; 383 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 384 | CLANG_WARN_BOOL_CONVERSION = YES; 385 | CLANG_WARN_COMMA = YES; 386 | CLANG_WARN_CONSTANT_CONVERSION = YES; 387 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 388 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 389 | CLANG_WARN_EMPTY_BODY = YES; 390 | CLANG_WARN_ENUM_CONVERSION = YES; 391 | CLANG_WARN_INFINITE_RECURSION = YES; 392 | CLANG_WARN_INT_CONVERSION = YES; 393 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 394 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 395 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 396 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 397 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 398 | CLANG_WARN_STRICT_PROTOTYPES = YES; 399 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 400 | CLANG_WARN_UNREACHABLE_CODE = YES; 401 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 402 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 403 | COPY_PHASE_STRIP = NO; 404 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 405 | ENABLE_NS_ASSERTIONS = NO; 406 | ENABLE_STRICT_OBJC_MSGSEND = YES; 407 | GCC_C_LANGUAGE_STANDARD = gnu99; 408 | GCC_NO_COMMON_BLOCKS = YES; 409 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 410 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 411 | GCC_WARN_UNDECLARED_SELECTOR = YES; 412 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 413 | GCC_WARN_UNUSED_FUNCTION = YES; 414 | GCC_WARN_UNUSED_VARIABLE = YES; 415 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 416 | MTL_ENABLE_DEBUG_INFO = NO; 417 | SDKROOT = iphoneos; 418 | SUPPORTED_PLATFORMS = iphoneos; 419 | TARGETED_DEVICE_FAMILY = "1,2"; 420 | VALIDATE_PRODUCT = YES; 421 | }; 422 | name = Release; 423 | }; 424 | 97C147061CF9000F007C117D /* Debug */ = { 425 | isa = XCBuildConfiguration; 426 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 427 | buildSettings = { 428 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 429 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 430 | ENABLE_BITCODE = NO; 431 | FRAMEWORK_SEARCH_PATHS = ( 432 | "$(inherited)", 433 | "$(PROJECT_DIR)/Flutter", 434 | ); 435 | INFOPLIST_FILE = Runner/Info.plist; 436 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 437 | LIBRARY_SEARCH_PATHS = ( 438 | "$(inherited)", 439 | "$(PROJECT_DIR)/Flutter", 440 | ); 441 | PRODUCT_BUNDLE_IDENTIFIER = com.clubhouse; 442 | PRODUCT_NAME = "$(TARGET_NAME)"; 443 | VERSIONING_SYSTEM = "apple-generic"; 444 | }; 445 | name = Debug; 446 | }; 447 | 97C147071CF9000F007C117D /* Release */ = { 448 | isa = XCBuildConfiguration; 449 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 450 | buildSettings = { 451 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 452 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 453 | ENABLE_BITCODE = NO; 454 | FRAMEWORK_SEARCH_PATHS = ( 455 | "$(inherited)", 456 | "$(PROJECT_DIR)/Flutter", 457 | ); 458 | INFOPLIST_FILE = Runner/Info.plist; 459 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 460 | LIBRARY_SEARCH_PATHS = ( 461 | "$(inherited)", 462 | "$(PROJECT_DIR)/Flutter", 463 | ); 464 | PRODUCT_BUNDLE_IDENTIFIER = com.clubhouse; 465 | PRODUCT_NAME = "$(TARGET_NAME)"; 466 | VERSIONING_SYSTEM = "apple-generic"; 467 | }; 468 | name = Release; 469 | }; 470 | /* End XCBuildConfiguration section */ 471 | 472 | /* Begin XCConfigurationList section */ 473 | 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { 474 | isa = XCConfigurationList; 475 | buildConfigurations = ( 476 | 97C147031CF9000F007C117D /* Debug */, 477 | 97C147041CF9000F007C117D /* Release */, 478 | 249021D3217E4FDB00AE95B9 /* Profile */, 479 | ); 480 | defaultConfigurationIsVisible = 0; 481 | defaultConfigurationName = Release; 482 | }; 483 | 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { 484 | isa = XCConfigurationList; 485 | buildConfigurations = ( 486 | 97C147061CF9000F007C117D /* Debug */, 487 | 97C147071CF9000F007C117D /* Release */, 488 | 249021D4217E4FDB00AE95B9 /* Profile */, 489 | ); 490 | defaultConfigurationIsVisible = 0; 491 | defaultConfigurationName = Release; 492 | }; 493 | /* End XCConfigurationList section */ 494 | }; 495 | rootObject = 97C146E61CF9000F007C117D /* Project object */; 496 | } 497 | --------------------------------------------------------------------------------