├── .dart_tool └── version ├── firebase.json ├── functions ├── .gitignore ├── .eslintrc.js └── package.json ├── android ├── settings_aar.gradle ├── .DS_Store ├── app │ ├── .DS_Store │ ├── src │ │ ├── .DS_Store │ │ ├── main │ │ │ ├── .DS_Store │ │ │ ├── java │ │ │ │ ├── .DS_Store │ │ │ │ └── io │ │ │ │ │ ├── .DS_Store │ │ │ │ │ └── flutter │ │ │ │ │ └── .DS_Store │ │ │ ├── res │ │ │ │ ├── .DS_Store │ │ │ │ ├── raw │ │ │ │ │ ├── .DS_Store │ │ │ │ │ ├── ringtone.mp3 │ │ │ │ │ └── whistle.mp3 │ │ │ │ ├── drawable │ │ │ │ │ ├── .DS_Store │ │ │ │ │ ├── transparent.png │ │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values │ │ │ │ │ ├── color.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── drawable-v21 │ │ │ │ │ └── launch_background.xml │ │ │ │ └── values-night │ │ │ │ │ └── styles.xml │ │ │ └── kotlin │ │ │ │ ├── .DS_Store │ │ │ │ └── com │ │ │ │ ├── .DS_Store │ │ │ │ └── fiberchat │ │ │ │ ├── .DS_Store │ │ │ │ └── fiberchat │ │ │ │ ├── Application.kt │ │ │ │ └── MainActivity.kt │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ └── profile │ │ │ └── AndroidManifest.xml │ └── proguard-rules.pro ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── .gitignore ├── settings.gradle ├── build.gradle └── fiberchat_android.iml ├── ios ├── Flutter │ ├── .last_build_id │ ├── Debug.xcconfig │ ├── Release.xcconfig │ ├── Generated.xcconfig │ ├── flutter_export_environment.sh │ └── AppFrameworkInfo.plist ├── Runner │ ├── Runner-Bridging-Header.h │ ├── ringtone.caf │ ├── 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 │ ├── Runner.entitlements │ ├── GeneratedPluginRegistrant.h │ └── Base.lproj │ │ ├── Main.storyboard │ │ └── LaunchScreen.storyboard ├── .DS_Store ├── blank.caf ├── build │ ├── XCBuildData │ │ ├── build.db │ │ ├── 41934990b7570d11f0274abe5a4aa560-desc.xcbuild │ │ ├── 4e9f46286f2f114e104916664f75a76b-desc.xcbuild │ │ ├── 7156056de91e103d98ec98ad24bdf7a4-desc.xcbuild │ │ ├── 83c10791c3f1a3f7df690a5f026ef443-desc.xcbuild │ │ └── BuildDescriptionCacheIndex-694f3cda2ebeca2a6621b1cd5b5ef957 │ ├── Runner.build │ │ ├── Debug-iphoneos │ │ │ └── Runner.build │ │ │ │ ├── dgph │ │ │ │ └── dgph~ │ │ └── Release-iphoneos │ │ │ └── Runner.build │ │ │ ├── dgph │ │ │ └── dgph~ │ └── Pods.build │ │ └── Release-iphonesimulator │ │ ├── FMDB.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── Mantle.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── Toast.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── abseil.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── nanopb.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── share.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── Firebase.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── Flutter.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── Pods-Runner.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── SDWebImage.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── SwiftyGif.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── device_info.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── file_picker.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── gRPC-C++.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── gRPC-Core.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── geolocator.build │ │ └── dgph │ │ ├── libwebp.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── local_auth.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── media_info.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── sqflite.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── tau_core.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── wakelock.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── BoringSSL-GRPC.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── DKPhotoGallery.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── FirebaseAuth.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── FirebaseCore.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── FirebaseStorage.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── GoogleUtilities.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── PromisesObjC.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── Reachability.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── admob_flutter.build │ │ └── dgph │ │ ├── agora_rtc_engine.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── audioplayers.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── cloud_firestore.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── cloud_functions.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── connectivity.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── contacts_service.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── devicelocale.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── firebase_auth.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── firebase_core.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── firebase_storage.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── flutter_pdfview.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── flutter_sound.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── fluttertoast.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── geolocator_apple.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── image_cropper.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── image_picker.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── launch_review.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── leveldb-library.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── package_info.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── path_provider.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── sms_autofill.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── url_launcher.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── video_player.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── video_thumbnail.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── AgoraRtcEngine_iOS.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── FirebaseCrashlytics.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── FirebaseFirestore.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── FirebaseFunctions.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── FirebaseInstallations.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── FirebaseMessaging.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── GTMSessionFetcher.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── Google-Mobile-Ads-SDK.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── GoogleAppMeasurement.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── GoogleDataTransport.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── SDWebImageWebPCoder.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── TOCropViewController.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── emoji_picker_flutter.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── firebase_crashlytics.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── firebase_messaging.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── flutter_video_info.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── google_mobile_ads.build │ │ └── dgph │ │ ├── mobile-ffmpeg-audio.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── mobile-ffmpeg-full.build │ │ └── dgph │ │ ├── permission_handler.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── shared_preferences.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── DKImagePickerController.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── FirebaseCoreDiagnostics.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── flutter_image_compress.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── flutter_native_timezone.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── flutter_ringtone_player.build │ │ └── dgph │ │ ├── flutter_secure_storage.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── receive_sharing_intent.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── DKPhotoGallery-DKPhotoGallery.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── GoogleUserMessagingPlatform.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── flutter_local_notifications.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── gRPC-C++-gRPCCertificates-Cpp.build │ │ ├── dgph │ │ └── dgph~ │ │ ├── DKImagePickerController-DKImagePickerController.build │ │ ├── dgph │ │ └── dgph~ │ │ └── TOCropViewController-TOCropViewControllerBundle.build │ │ ├── dgph │ │ └── dgph~ ├── Runner.xcodeproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcuserdata │ │ └── mymac.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ ├── WorkspaceSettings.xcsettings │ │ └── IDEWorkspaceChecks.plist └── Runner.xcworkspace │ ├── xcuserdata │ └── mymac.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── .DS_Store ├── lib ├── .DS_Store ├── Screens │ ├── .DS_Store │ ├── chat_screen │ │ └── utils │ │ │ ├── messagedata.dart │ │ │ ├── message.dart │ │ │ └── uploadMediaWithProgress.dart │ ├── splash_screen │ │ └── splash_screen.dart │ ├── status │ │ └── components │ │ │ └── formatStatusTime.dart │ └── calling_screen │ │ └── pickup_layout.dart ├── Utils │ ├── .DS_Store │ ├── unawaited.dart │ └── phonenumberVariantsGenerator.dart ├── widgets │ ├── .DS_Store │ ├── Passcode │ │ ├── shake_curve.dart │ │ └── circle.dart │ ├── PhoneField │ │ └── phone_number.dart │ ├── MyElevatedButton │ │ └── MyElevatedButton.dart │ └── Common │ │ └── cached_image.dart ├── Services │ ├── .DS_Store │ ├── localization │ │ ├── .DS_Store │ │ ├── json_languages │ │ │ └── .DS_Store │ │ ├── language.dart │ │ ├── language_constants.dart │ │ └── demo_localization.dart │ ├── Providers │ │ ├── FirebaseAPIProvider.dart │ │ ├── seen_state.dart │ │ ├── currentchat_peer.dart │ │ ├── DownloadInfoProvider.dart │ │ ├── user_provider.dart │ │ └── seen_provider.dart │ └── Admob │ │ └── admob.dart ├── Models │ ├── E2EE │ │ └── e2ee.dart │ ├── call.dart │ └── call_methods.dart └── Configs │ ├── Enum.dart │ └── Dbpaths.dart ├── assets ├── .DS_Store ├── flags │ ├── ad.png │ ├── ae.png │ ├── af.png │ ├── ag.png │ ├── ai.png │ ├── al.png │ ├── am.png │ ├── an.png │ ├── ao.png │ ├── aq.png │ ├── ar.png │ ├── as.png │ ├── at.png │ ├── au.png │ ├── aw.png │ ├── ax.png │ ├── az.png │ ├── ba.png │ ├── bb.png │ ├── bd.png │ ├── be.png │ ├── bf.png │ ├── bg.png │ ├── bh.png │ ├── bi.png │ ├── bj.png │ ├── bl.png │ ├── bm.png │ ├── bn.png │ ├── bo.png │ ├── bq.png │ ├── br.png │ ├── bs.png │ ├── bt.png │ ├── bv.png │ ├── bw.png │ ├── by.png │ ├── bz.png │ ├── ca.png │ ├── cc.png │ ├── cd.png │ ├── cf.png │ ├── cg.png │ ├── ch.png │ ├── ci.png │ ├── ck.png │ ├── cl.png │ ├── cm.png │ ├── cn.png │ ├── co.png │ ├── cr.png │ ├── cu.png │ ├── cv.png │ ├── cw.png │ ├── cx.png │ ├── cy.png │ ├── cz.png │ ├── de.png │ ├── dj.png │ ├── dk.png │ ├── dm.png │ ├── do.png │ ├── dz.png │ ├── ec.png │ ├── ee.png │ ├── eg.png │ ├── eh.png │ ├── er.png │ ├── es.png │ ├── et.png │ ├── eu.png │ ├── fi.png │ ├── fj.png │ ├── fk.png │ ├── fm.png │ ├── fo.png │ ├── fr.png │ ├── ga.png │ ├── gb.png │ ├── gd.png │ ├── ge.png │ ├── gf.png │ ├── gg.png │ ├── gh.png │ ├── gi.png │ ├── gl.png │ ├── gm.png │ ├── gn.png │ ├── gp.png │ ├── gq.png │ ├── gr.png │ ├── gs.png │ ├── gt.png │ ├── gu.png │ ├── gw.png │ ├── gy.png │ ├── hk.png │ ├── hm.png │ ├── hn.png │ ├── hr.png │ ├── ht.png │ ├── hu.png │ ├── id.png │ ├── ie.png │ ├── il.png │ ├── im.png │ ├── in.png │ ├── io.png │ ├── iq.png │ ├── ir.png │ ├── is.png │ ├── it.png │ ├── je.png │ ├── jm.png │ ├── jo.png │ ├── jp.png │ ├── ke.png │ ├── kg.png │ ├── kh.png │ ├── ki.png │ ├── km.png │ ├── kn.png │ ├── kp.png │ ├── kr.png │ ├── kw.png │ ├── ky.png │ ├── kz.png │ ├── la.png │ ├── lb.png │ ├── lc.png │ ├── li.png │ ├── lk.png │ ├── lr.png │ ├── ls.png │ ├── lt.png │ ├── lu.png │ ├── lv.png │ ├── ly.png │ ├── ma.png │ ├── mc.png │ ├── md.png │ ├── me.png │ ├── mf.png │ ├── mg.png │ ├── mh.png │ ├── mk.png │ ├── ml.png │ ├── mm.png │ ├── mn.png │ ├── mo.png │ ├── mp.png │ ├── mq.png │ ├── mr.png │ ├── ms.png │ ├── mt.png │ ├── mu.png │ ├── mv.png │ ├── mw.png │ ├── mx.png │ ├── my.png │ ├── mz.png │ ├── na.png │ ├── nc.png │ ├── ne.png │ ├── nf.png │ ├── ng.png │ ├── ni.png │ ├── nl.png │ ├── no.png │ ├── np.png │ ├── nr.png │ ├── nu.png │ ├── nz.png │ ├── om.png │ ├── pa.png │ ├── pe.png │ ├── pf.png │ ├── pg.png │ ├── ph.png │ ├── pk.png │ ├── pl.png │ ├── pm.png │ ├── pn.png │ ├── pr.png │ ├── ps.png │ ├── pt.png │ ├── pw.png │ ├── py.png │ ├── qa.png │ ├── re.png │ ├── ro.png │ ├── rs.png │ ├── ru.png │ ├── rw.png │ ├── sa.png │ ├── sb.png │ ├── sc.png │ ├── sd.png │ ├── se.png │ ├── sg.png │ ├── sh.png │ ├── si.png │ ├── sj.png │ ├── sk.png │ ├── sl.png │ ├── sm.png │ ├── sn.png │ ├── so.png │ ├── sr.png │ ├── ss.png │ ├── st.png │ ├── sv.png │ ├── sx.png │ ├── sy.png │ ├── sz.png │ ├── tc.png │ ├── td.png │ ├── tf.png │ ├── tg.png │ ├── th.png │ ├── tj.png │ ├── tk.png │ ├── tl.png │ ├── tm.png │ ├── tn.png │ ├── to.png │ ├── tr.png │ ├── tt.png │ ├── tv.png │ ├── tw.png │ ├── tz.png │ ├── ua.png │ ├── ug.png │ ├── um.png │ ├── us.png │ ├── uy.png │ ├── uz.png │ ├── va.png │ ├── vc.png │ ├── ve.png │ ├── vg.png │ ├── vi.png │ ├── vn.png │ ├── vu.png │ ├── wf.png │ ├── ws.png │ ├── xk.png │ ├── ye.png │ ├── yt.png │ ├── za.png │ ├── zm.png │ ├── zw.png │ ├── gb-eng.png │ ├── gb-nir.png │ ├── gb-sct.png │ └── gb-wls.png ├── fonts │ └── .DS_Store ├── images │ ├── .DS_Store │ ├── applogo.png │ ├── mapview.jpg │ ├── splash.jpeg │ ├── background.png │ └── img_not_available.jpeg ├── sounds │ ├── .DS_Store │ ├── popsound.mp3 │ ├── ringtone.caf │ ├── ringtone.mp3 │ ├── whistle.mp3 │ └── callingtone.mp3 ├── appicon │ ├── .DS_Store │ └── appicon.jpg └── ios_assets │ ├── .DS_Store │ ├── blank.caf │ └── ringtone.caf ├── .firebaserc ├── Screenshot ├── 68747470733a2f2f666972656261736573746f726167652e676f6f676c65617069732e636f6d2f76302f622f6669626572636861742d66313636662e61707073706f742e636f6d2f6f2f67726170686963732532467472616e736c6174696f6e2d6d696e2e6a7065673f616c7.jpg ├── 68747470733a2f2f666972656261736573746f726167652e676f6f676c65617069732e636f6d2f76302f622f73746f72656d61737465722d63343964332e61707073706f742e636f6d2f6f2f6669626572636861745f6e657725324663322e6a70673f616c743d6d656469612.jpg ├── 68747470733a2f2f666972656261736573746f726167652e676f6f676c65617069732e636f6d2f76302f622f73746f72656d61737465722d63343964332e61707073706f742e636f6d2f6f2f6669626572636861745f6e657725324663332e6a70673f616c743d6d656469612.jpg ├── 68747470733a2f2f666972656261736573746f726167652e676f6f676c65617069732e636f6d2f76302f622f73746f72656d61737465722d63343964332e61707073706f742e636f6d2f6f2f6669626572636861745f6e65772532466373735f6e65775f66656174757265732.jpg ├── 68747470733a2f2f666972656261736573746f726167652e676f6f676c65617069732e636f6d2f76302f622f73746f72656d61737465722d63343964332e61707073706f742e636f6d2f6f2f6669626572636861745f6e65772532466d312d6d696e2e6a70673f616c743d6d6.jpg └── 68747470733a2f2f666972656261736573746f726167652e676f6f676c65617069732e636f6d2f76302f622f73746f72656d61737465722d63343964332e61707073706f742e636f6d2f6f2f6669626572636861745f6e65772532466f7468657266656174757265732e6a706.jpg ├── fiberchat.iml ├── test └── widget_test.dart └── README.md /.dart_tool/version: -------------------------------------------------------------------------------- 1 | 2.5.3 -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /functions/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /android/settings_aar.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /ios/Flutter/.last_build_id: -------------------------------------------------------------------------------- 1 | 22702593a950567e9f193097667af73e -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/.DS_Store -------------------------------------------------------------------------------- /ios/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/ios/.DS_Store -------------------------------------------------------------------------------- /ios/blank.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/ios/blank.caf -------------------------------------------------------------------------------- /lib/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/lib/.DS_Store -------------------------------------------------------------------------------- /assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/.DS_Store -------------------------------------------------------------------------------- /android/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/android/.DS_Store -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- 1 | { 2 | "projects": { 3 | "default": "PASTE_YOUR_FIREBASE_PROJECT_ID" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /android/app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/android/app/.DS_Store -------------------------------------------------------------------------------- /assets/flags/ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ad.png -------------------------------------------------------------------------------- /assets/flags/ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ae.png -------------------------------------------------------------------------------- /assets/flags/af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/af.png -------------------------------------------------------------------------------- /assets/flags/ag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ag.png -------------------------------------------------------------------------------- /assets/flags/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ai.png -------------------------------------------------------------------------------- /assets/flags/al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/al.png -------------------------------------------------------------------------------- /assets/flags/am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/am.png -------------------------------------------------------------------------------- /assets/flags/an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/an.png -------------------------------------------------------------------------------- /assets/flags/ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ao.png -------------------------------------------------------------------------------- /assets/flags/aq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/aq.png -------------------------------------------------------------------------------- /assets/flags/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ar.png -------------------------------------------------------------------------------- /assets/flags/as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/as.png -------------------------------------------------------------------------------- /assets/flags/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/at.png -------------------------------------------------------------------------------- /assets/flags/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/au.png -------------------------------------------------------------------------------- /assets/flags/aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/aw.png -------------------------------------------------------------------------------- /assets/flags/ax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ax.png -------------------------------------------------------------------------------- /assets/flags/az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/az.png -------------------------------------------------------------------------------- /assets/flags/ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ba.png -------------------------------------------------------------------------------- /assets/flags/bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/bb.png -------------------------------------------------------------------------------- /assets/flags/bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/bd.png -------------------------------------------------------------------------------- /assets/flags/be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/be.png -------------------------------------------------------------------------------- /assets/flags/bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/bf.png -------------------------------------------------------------------------------- /assets/flags/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/bg.png -------------------------------------------------------------------------------- /assets/flags/bh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/bh.png -------------------------------------------------------------------------------- /assets/flags/bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/bi.png -------------------------------------------------------------------------------- /assets/flags/bj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/bj.png -------------------------------------------------------------------------------- /assets/flags/bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/bl.png -------------------------------------------------------------------------------- /assets/flags/bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/bm.png -------------------------------------------------------------------------------- /assets/flags/bn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/bn.png -------------------------------------------------------------------------------- /assets/flags/bo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/bo.png -------------------------------------------------------------------------------- /assets/flags/bq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/bq.png -------------------------------------------------------------------------------- /assets/flags/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/br.png -------------------------------------------------------------------------------- /assets/flags/bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/bs.png -------------------------------------------------------------------------------- /assets/flags/bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/bt.png -------------------------------------------------------------------------------- /assets/flags/bv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/bv.png -------------------------------------------------------------------------------- /assets/flags/bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/bw.png -------------------------------------------------------------------------------- /assets/flags/by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/by.png -------------------------------------------------------------------------------- /assets/flags/bz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/bz.png -------------------------------------------------------------------------------- /assets/flags/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ca.png -------------------------------------------------------------------------------- /assets/flags/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/cc.png -------------------------------------------------------------------------------- /assets/flags/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/cd.png -------------------------------------------------------------------------------- /assets/flags/cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/cf.png -------------------------------------------------------------------------------- /assets/flags/cg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/cg.png -------------------------------------------------------------------------------- /assets/flags/ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ch.png -------------------------------------------------------------------------------- /assets/flags/ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ci.png -------------------------------------------------------------------------------- /assets/flags/ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ck.png -------------------------------------------------------------------------------- /assets/flags/cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/cl.png -------------------------------------------------------------------------------- /assets/flags/cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/cm.png -------------------------------------------------------------------------------- /assets/flags/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/cn.png -------------------------------------------------------------------------------- /assets/flags/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/co.png -------------------------------------------------------------------------------- /assets/flags/cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/cr.png -------------------------------------------------------------------------------- /assets/flags/cu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/cu.png -------------------------------------------------------------------------------- /assets/flags/cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/cv.png -------------------------------------------------------------------------------- /assets/flags/cw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/cw.png -------------------------------------------------------------------------------- /assets/flags/cx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/cx.png -------------------------------------------------------------------------------- /assets/flags/cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/cy.png -------------------------------------------------------------------------------- /assets/flags/cz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/cz.png -------------------------------------------------------------------------------- /assets/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/de.png -------------------------------------------------------------------------------- /assets/flags/dj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/dj.png -------------------------------------------------------------------------------- /assets/flags/dk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/dk.png -------------------------------------------------------------------------------- /assets/flags/dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/dm.png -------------------------------------------------------------------------------- /assets/flags/do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/do.png -------------------------------------------------------------------------------- /assets/flags/dz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/dz.png -------------------------------------------------------------------------------- /assets/flags/ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ec.png -------------------------------------------------------------------------------- /assets/flags/ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ee.png -------------------------------------------------------------------------------- /assets/flags/eg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/eg.png -------------------------------------------------------------------------------- /assets/flags/eh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/eh.png -------------------------------------------------------------------------------- /assets/flags/er.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/er.png -------------------------------------------------------------------------------- /assets/flags/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/es.png -------------------------------------------------------------------------------- /assets/flags/et.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/et.png -------------------------------------------------------------------------------- /assets/flags/eu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/eu.png -------------------------------------------------------------------------------- /assets/flags/fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/fi.png -------------------------------------------------------------------------------- /assets/flags/fj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/fj.png -------------------------------------------------------------------------------- /assets/flags/fk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/fk.png -------------------------------------------------------------------------------- /assets/flags/fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/fm.png -------------------------------------------------------------------------------- /assets/flags/fo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/fo.png -------------------------------------------------------------------------------- /assets/flags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/fr.png -------------------------------------------------------------------------------- /assets/flags/ga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ga.png -------------------------------------------------------------------------------- /assets/flags/gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/gb.png -------------------------------------------------------------------------------- /assets/flags/gd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/gd.png -------------------------------------------------------------------------------- /assets/flags/ge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ge.png -------------------------------------------------------------------------------- /assets/flags/gf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/gf.png -------------------------------------------------------------------------------- /assets/flags/gg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/gg.png -------------------------------------------------------------------------------- /assets/flags/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/gh.png -------------------------------------------------------------------------------- /assets/flags/gi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/gi.png -------------------------------------------------------------------------------- /assets/flags/gl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/gl.png -------------------------------------------------------------------------------- /assets/flags/gm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/gm.png -------------------------------------------------------------------------------- /assets/flags/gn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/gn.png -------------------------------------------------------------------------------- /assets/flags/gp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/gp.png -------------------------------------------------------------------------------- /assets/flags/gq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/gq.png -------------------------------------------------------------------------------- /assets/flags/gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/gr.png -------------------------------------------------------------------------------- /assets/flags/gs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/gs.png -------------------------------------------------------------------------------- /assets/flags/gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/gt.png -------------------------------------------------------------------------------- /assets/flags/gu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/gu.png -------------------------------------------------------------------------------- /assets/flags/gw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/gw.png -------------------------------------------------------------------------------- /assets/flags/gy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/gy.png -------------------------------------------------------------------------------- /assets/flags/hk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/hk.png -------------------------------------------------------------------------------- /assets/flags/hm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/hm.png -------------------------------------------------------------------------------- /assets/flags/hn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/hn.png -------------------------------------------------------------------------------- /assets/flags/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/hr.png -------------------------------------------------------------------------------- /assets/flags/ht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ht.png -------------------------------------------------------------------------------- /assets/flags/hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/hu.png -------------------------------------------------------------------------------- /assets/flags/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/id.png -------------------------------------------------------------------------------- /assets/flags/ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ie.png -------------------------------------------------------------------------------- /assets/flags/il.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/il.png -------------------------------------------------------------------------------- /assets/flags/im.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/im.png -------------------------------------------------------------------------------- /assets/flags/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/in.png -------------------------------------------------------------------------------- /assets/flags/io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/io.png -------------------------------------------------------------------------------- /assets/flags/iq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/iq.png -------------------------------------------------------------------------------- /assets/flags/ir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ir.png -------------------------------------------------------------------------------- /assets/flags/is.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/is.png -------------------------------------------------------------------------------- /assets/flags/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/it.png -------------------------------------------------------------------------------- /assets/flags/je.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/je.png -------------------------------------------------------------------------------- /assets/flags/jm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/jm.png -------------------------------------------------------------------------------- /assets/flags/jo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/jo.png -------------------------------------------------------------------------------- /assets/flags/jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/jp.png -------------------------------------------------------------------------------- /assets/flags/ke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ke.png -------------------------------------------------------------------------------- /assets/flags/kg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/kg.png -------------------------------------------------------------------------------- /assets/flags/kh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/kh.png -------------------------------------------------------------------------------- /assets/flags/ki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ki.png -------------------------------------------------------------------------------- /assets/flags/km.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/km.png -------------------------------------------------------------------------------- /assets/flags/kn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/kn.png -------------------------------------------------------------------------------- /assets/flags/kp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/kp.png -------------------------------------------------------------------------------- /assets/flags/kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/kr.png -------------------------------------------------------------------------------- /assets/flags/kw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/kw.png -------------------------------------------------------------------------------- /assets/flags/ky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ky.png -------------------------------------------------------------------------------- /assets/flags/kz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/kz.png -------------------------------------------------------------------------------- /assets/flags/la.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/la.png -------------------------------------------------------------------------------- /assets/flags/lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/lb.png -------------------------------------------------------------------------------- /assets/flags/lc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/lc.png -------------------------------------------------------------------------------- /assets/flags/li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/li.png -------------------------------------------------------------------------------- /assets/flags/lk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/lk.png -------------------------------------------------------------------------------- /assets/flags/lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/lr.png -------------------------------------------------------------------------------- /assets/flags/ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ls.png -------------------------------------------------------------------------------- /assets/flags/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/lt.png -------------------------------------------------------------------------------- /assets/flags/lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/lu.png -------------------------------------------------------------------------------- /assets/flags/lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/lv.png -------------------------------------------------------------------------------- /assets/flags/ly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ly.png -------------------------------------------------------------------------------- /assets/flags/ma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ma.png -------------------------------------------------------------------------------- /assets/flags/mc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/mc.png -------------------------------------------------------------------------------- /assets/flags/md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/md.png -------------------------------------------------------------------------------- /assets/flags/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/me.png -------------------------------------------------------------------------------- /assets/flags/mf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/mf.png -------------------------------------------------------------------------------- /assets/flags/mg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/mg.png -------------------------------------------------------------------------------- /assets/flags/mh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/mh.png -------------------------------------------------------------------------------- /assets/flags/mk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/mk.png -------------------------------------------------------------------------------- /assets/flags/ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ml.png -------------------------------------------------------------------------------- /assets/flags/mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/mm.png -------------------------------------------------------------------------------- /assets/flags/mn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/mn.png -------------------------------------------------------------------------------- /assets/flags/mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/mo.png -------------------------------------------------------------------------------- /assets/flags/mp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/mp.png -------------------------------------------------------------------------------- /assets/flags/mq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/mq.png -------------------------------------------------------------------------------- /assets/flags/mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/mr.png -------------------------------------------------------------------------------- /assets/flags/ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ms.png -------------------------------------------------------------------------------- /assets/flags/mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/mt.png -------------------------------------------------------------------------------- /assets/flags/mu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/mu.png -------------------------------------------------------------------------------- /assets/flags/mv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/mv.png -------------------------------------------------------------------------------- /assets/flags/mw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/mw.png -------------------------------------------------------------------------------- /assets/flags/mx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/mx.png -------------------------------------------------------------------------------- /assets/flags/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/my.png -------------------------------------------------------------------------------- /assets/flags/mz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/mz.png -------------------------------------------------------------------------------- /assets/flags/na.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/na.png -------------------------------------------------------------------------------- /assets/flags/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/nc.png -------------------------------------------------------------------------------- /assets/flags/ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ne.png -------------------------------------------------------------------------------- /assets/flags/nf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/nf.png -------------------------------------------------------------------------------- /assets/flags/ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ng.png -------------------------------------------------------------------------------- /assets/flags/ni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ni.png -------------------------------------------------------------------------------- /assets/flags/nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/nl.png -------------------------------------------------------------------------------- /assets/flags/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/no.png -------------------------------------------------------------------------------- /assets/flags/np.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/np.png -------------------------------------------------------------------------------- /assets/flags/nr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/nr.png -------------------------------------------------------------------------------- /assets/flags/nu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/nu.png -------------------------------------------------------------------------------- /assets/flags/nz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/nz.png -------------------------------------------------------------------------------- /assets/flags/om.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/om.png -------------------------------------------------------------------------------- /assets/flags/pa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/pa.png -------------------------------------------------------------------------------- /assets/flags/pe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/pe.png -------------------------------------------------------------------------------- /assets/flags/pf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/pf.png -------------------------------------------------------------------------------- /assets/flags/pg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/pg.png -------------------------------------------------------------------------------- /assets/flags/ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ph.png -------------------------------------------------------------------------------- /assets/flags/pk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/pk.png -------------------------------------------------------------------------------- /assets/flags/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/pl.png -------------------------------------------------------------------------------- /assets/flags/pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/pm.png -------------------------------------------------------------------------------- /assets/flags/pn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/pn.png -------------------------------------------------------------------------------- /assets/flags/pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/pr.png -------------------------------------------------------------------------------- /assets/flags/ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ps.png -------------------------------------------------------------------------------- /assets/flags/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/pt.png -------------------------------------------------------------------------------- /assets/flags/pw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/pw.png -------------------------------------------------------------------------------- /assets/flags/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/py.png -------------------------------------------------------------------------------- /assets/flags/qa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/qa.png -------------------------------------------------------------------------------- /assets/flags/re.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/re.png -------------------------------------------------------------------------------- /assets/flags/ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ro.png -------------------------------------------------------------------------------- /assets/flags/rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/rs.png -------------------------------------------------------------------------------- /assets/flags/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ru.png -------------------------------------------------------------------------------- /assets/flags/rw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/rw.png -------------------------------------------------------------------------------- /assets/flags/sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/sa.png -------------------------------------------------------------------------------- /assets/flags/sb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/sb.png -------------------------------------------------------------------------------- /assets/flags/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/sc.png -------------------------------------------------------------------------------- /assets/flags/sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/sd.png -------------------------------------------------------------------------------- /assets/flags/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/se.png -------------------------------------------------------------------------------- /assets/flags/sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/sg.png -------------------------------------------------------------------------------- /assets/flags/sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/sh.png -------------------------------------------------------------------------------- /assets/flags/si.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/si.png -------------------------------------------------------------------------------- /assets/flags/sj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/sj.png -------------------------------------------------------------------------------- /assets/flags/sk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/sk.png -------------------------------------------------------------------------------- /assets/flags/sl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/sl.png -------------------------------------------------------------------------------- /assets/flags/sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/sm.png -------------------------------------------------------------------------------- /assets/flags/sn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/sn.png -------------------------------------------------------------------------------- /assets/flags/so.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/so.png -------------------------------------------------------------------------------- /assets/flags/sr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/sr.png -------------------------------------------------------------------------------- /assets/flags/ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ss.png -------------------------------------------------------------------------------- /assets/flags/st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/st.png -------------------------------------------------------------------------------- /assets/flags/sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/sv.png -------------------------------------------------------------------------------- /assets/flags/sx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/sx.png -------------------------------------------------------------------------------- /assets/flags/sy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/sy.png -------------------------------------------------------------------------------- /assets/flags/sz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/sz.png -------------------------------------------------------------------------------- /assets/flags/tc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/tc.png -------------------------------------------------------------------------------- /assets/flags/td.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/td.png -------------------------------------------------------------------------------- /assets/flags/tf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/tf.png -------------------------------------------------------------------------------- /assets/flags/tg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/tg.png -------------------------------------------------------------------------------- /assets/flags/th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/th.png -------------------------------------------------------------------------------- /assets/flags/tj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/tj.png -------------------------------------------------------------------------------- /assets/flags/tk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/tk.png -------------------------------------------------------------------------------- /assets/flags/tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/tl.png -------------------------------------------------------------------------------- /assets/flags/tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/tm.png -------------------------------------------------------------------------------- /assets/flags/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/tn.png -------------------------------------------------------------------------------- /assets/flags/to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/to.png -------------------------------------------------------------------------------- /assets/flags/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/tr.png -------------------------------------------------------------------------------- /assets/flags/tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/tt.png -------------------------------------------------------------------------------- /assets/flags/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/tv.png -------------------------------------------------------------------------------- /assets/flags/tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/tw.png -------------------------------------------------------------------------------- /assets/flags/tz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/tz.png -------------------------------------------------------------------------------- /assets/flags/ua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ua.png -------------------------------------------------------------------------------- /assets/flags/ug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ug.png -------------------------------------------------------------------------------- /assets/flags/um.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/um.png -------------------------------------------------------------------------------- /assets/flags/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/us.png -------------------------------------------------------------------------------- /assets/flags/uy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/uy.png -------------------------------------------------------------------------------- /assets/flags/uz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/uz.png -------------------------------------------------------------------------------- /assets/flags/va.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/va.png -------------------------------------------------------------------------------- /assets/flags/vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/vc.png -------------------------------------------------------------------------------- /assets/flags/ve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ve.png -------------------------------------------------------------------------------- /assets/flags/vg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/vg.png -------------------------------------------------------------------------------- /assets/flags/vi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/vi.png -------------------------------------------------------------------------------- /assets/flags/vn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/vn.png -------------------------------------------------------------------------------- /assets/flags/vu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/vu.png -------------------------------------------------------------------------------- /assets/flags/wf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/wf.png -------------------------------------------------------------------------------- /assets/flags/ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ws.png -------------------------------------------------------------------------------- /assets/flags/xk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/xk.png -------------------------------------------------------------------------------- /assets/flags/ye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/ye.png -------------------------------------------------------------------------------- /assets/flags/yt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/yt.png -------------------------------------------------------------------------------- /assets/flags/za.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/za.png -------------------------------------------------------------------------------- /assets/flags/zm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/zm.png -------------------------------------------------------------------------------- /assets/flags/zw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/zw.png -------------------------------------------------------------------------------- /lib/Screens/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/lib/Screens/.DS_Store -------------------------------------------------------------------------------- /lib/Utils/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/lib/Utils/.DS_Store -------------------------------------------------------------------------------- /lib/widgets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/lib/widgets/.DS_Store -------------------------------------------------------------------------------- /assets/flags/gb-eng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/gb-eng.png -------------------------------------------------------------------------------- /assets/flags/gb-nir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/gb-nir.png -------------------------------------------------------------------------------- /assets/flags/gb-sct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/gb-sct.png -------------------------------------------------------------------------------- /assets/flags/gb-wls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/flags/gb-wls.png -------------------------------------------------------------------------------- /assets/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/fonts/.DS_Store -------------------------------------------------------------------------------- /assets/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/images/.DS_Store -------------------------------------------------------------------------------- /assets/sounds/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/sounds/.DS_Store -------------------------------------------------------------------------------- /ios/Runner/ringtone.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/ios/Runner/ringtone.caf -------------------------------------------------------------------------------- /lib/Services/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/lib/Services/.DS_Store -------------------------------------------------------------------------------- /android/app/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/android/app/src/.DS_Store -------------------------------------------------------------------------------- /assets/appicon/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/appicon/.DS_Store -------------------------------------------------------------------------------- /assets/appicon/appicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/appicon/appicon.jpg -------------------------------------------------------------------------------- /assets/images/applogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/images/applogo.png -------------------------------------------------------------------------------- /assets/images/mapview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/images/mapview.jpg -------------------------------------------------------------------------------- /assets/images/splash.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/images/splash.jpeg -------------------------------------------------------------------------------- /assets/sounds/popsound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/sounds/popsound.mp3 -------------------------------------------------------------------------------- /assets/sounds/ringtone.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/sounds/ringtone.caf -------------------------------------------------------------------------------- /assets/sounds/ringtone.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/sounds/ringtone.mp3 -------------------------------------------------------------------------------- /assets/sounds/whistle.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/sounds/whistle.mp3 -------------------------------------------------------------------------------- /assets/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/images/background.png -------------------------------------------------------------------------------- /assets/ios_assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/ios_assets/.DS_Store -------------------------------------------------------------------------------- /assets/ios_assets/blank.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/ios_assets/blank.caf -------------------------------------------------------------------------------- /android/app/src/main/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/android/app/src/main/.DS_Store -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.useAndroidX=true 3 | android.enableJetifier=true 4 | -------------------------------------------------------------------------------- /assets/ios_assets/ringtone.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/ios_assets/ringtone.caf -------------------------------------------------------------------------------- /assets/sounds/callingtone.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/sounds/callingtone.mp3 -------------------------------------------------------------------------------- /ios/build/XCBuildData/build.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/ios/build/XCBuildData/build.db -------------------------------------------------------------------------------- /android/app/src/main/java/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/android/app/src/main/java/.DS_Store -------------------------------------------------------------------------------- /android/app/src/main/res/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/android/app/src/main/res/.DS_Store -------------------------------------------------------------------------------- /assets/images/img_not_available.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/assets/images/img_not_available.jpeg -------------------------------------------------------------------------------- /lib/Services/localization/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/lib/Services/localization/.DS_Store -------------------------------------------------------------------------------- /android/app/src/main/java/io/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/android/app/src/main/java/io/.DS_Store -------------------------------------------------------------------------------- /android/app/src/main/kotlin/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/android/app/src/main/kotlin/.DS_Store -------------------------------------------------------------------------------- /android/app/src/main/res/raw/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/android/app/src/main/res/raw/.DS_Store -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/android/app/src/main/kotlin/com/.DS_Store -------------------------------------------------------------------------------- /android/app/src/main/res/raw/ringtone.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/android/app/src/main/res/raw/ringtone.mp3 -------------------------------------------------------------------------------- /android/app/src/main/res/raw/whistle.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/android/app/src/main/res/raw/whistle.mp3 -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/android/app/src/main/res/drawable/.DS_Store -------------------------------------------------------------------------------- /android/app/src/main/java/io/flutter/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/android/app/src/main/java/io/flutter/.DS_Store -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/fiberchat/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/android/app/src/main/kotlin/com/fiberchat/.DS_Store -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/android/app/src/main/res/drawable/transparent.png -------------------------------------------------------------------------------- /lib/Services/localization/json_languages/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/lib/Services/localization/json_languages/.DS_Store -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/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/pranshulagrawal/fiberchat/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/pranshulagrawal/fiberchat/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/pranshulagrawal/fiberchat/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/pranshulagrawal/fiberchat/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/build/Runner.build/Debug-iphoneos/Runner.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios -------------------------------------------------------------------------------- /ios/build/Runner.build/Debug-iphoneos/Runner.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios -------------------------------------------------------------------------------- /ios/build/Runner.build/Release-iphoneos/Runner.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/build/Runner.build/Release-iphoneos/Runner.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/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/pranshulagrawal/fiberchat/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/pranshulagrawal/fiberchat/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/pranshulagrawal/fiberchat/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/pranshulagrawal/fiberchat/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/pranshulagrawal/fiberchat/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/pranshulagrawal/fiberchat/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/pranshulagrawal/fiberchat/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/pranshulagrawal/fiberchat/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/pranshulagrawal/fiberchat/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/pranshulagrawal/fiberchat/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/pranshulagrawal/fiberchat/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/pranshulagrawal/fiberchat/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/build/XCBuildData/41934990b7570d11f0274abe5a4aa560-desc.xcbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/ios/build/XCBuildData/41934990b7570d11f0274abe5a4aa560-desc.xcbuild -------------------------------------------------------------------------------- /ios/build/XCBuildData/4e9f46286f2f114e104916664f75a76b-desc.xcbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/ios/build/XCBuildData/4e9f46286f2f114e104916664f75a76b-desc.xcbuild -------------------------------------------------------------------------------- /ios/build/XCBuildData/7156056de91e103d98ec98ad24bdf7a4-desc.xcbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/ios/build/XCBuildData/7156056de91e103d98ec98ad24bdf7a4-desc.xcbuild -------------------------------------------------------------------------------- /ios/build/XCBuildData/83c10791c3f1a3f7df690a5f026ef443-desc.xcbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/ios/build/XCBuildData/83c10791c3f1a3f7df690a5f026ef443-desc.xcbuild -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/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/pranshulagrawal/fiberchat/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/FMDB.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/FMDB.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/Mantle.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/Toast.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/Toast.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/abseil.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/nanopb.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/share.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/share.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/Firebase.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/Firebase.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/Flutter.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/Flutter.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/Mantle.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/Pods-Runner.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/SDWebImage.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/SDWebImage.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/SwiftyGif.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/SwiftyGif.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/abseil.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/device_info.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/file_picker.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/gRPC-C++.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/gRPC-C++.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/gRPC-Core.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/gRPC-Core.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/geolocator.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/libwebp.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/libwebp.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/local_auth.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/local_auth.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/media_info.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/media_info.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/nanopb.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/sqflite.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/sqflite.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/tau_core.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/tau_core.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/wakelock.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/wakelock.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/color.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #06a54d 4 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/BoringSSL-GRPC.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/BoringSSL-GRPC.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/DKPhotoGallery.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/DKPhotoGallery.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/FirebaseAuth.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/FirebaseAuth.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/FirebaseCore.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/FirebaseCore.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/FirebaseStorage.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/FirebaseStorage.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/GoogleUtilities.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/GoogleUtilities.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/Pods-Runner.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/PromisesObjC.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/PromisesObjC.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/Reachability.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/Reachability.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/admob_flutter.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/agora_rtc_engine.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/audioplayers.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/audioplayers.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/cloud_firestore.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/cloud_firestore.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/cloud_functions.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/cloud_functions.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/connectivity.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/connectivity.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/contacts_service.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/device_info.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/devicelocale.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/devicelocale.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/file_picker.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/firebase_auth.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/firebase_auth.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/firebase_core.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/firebase_core.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/firebase_storage.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/flutter_pdfview.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/flutter_pdfview.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/flutter_sound.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/flutter_sound.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/fluttertoast.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/fluttertoast.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/geolocator_apple.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/image_cropper.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/image_cropper.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/image_picker.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/image_picker.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/launch_review.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/launch_review.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/leveldb-library.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/leveldb-library.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/package_info.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/package_info.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/path_provider.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/path_provider.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/sms_autofill.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/sms_autofill.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/url_launcher.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/url_launcher.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/video_player.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/video_player.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/video_thumbnail.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/video_thumbnail.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/AgoraRtcEngine_iOS.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/AgoraRtcEngine_iOS.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/FirebaseCrashlytics.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/FirebaseCrashlytics.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/FirebaseFirestore.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/FirebaseFirestore.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/FirebaseFunctions.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/FirebaseFunctions.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/FirebaseInstallations.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/FirebaseMessaging.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/FirebaseMessaging.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/GTMSessionFetcher.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/GTMSessionFetcher.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/Google-Mobile-Ads-SDK.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/GoogleAppMeasurement.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/GoogleAppMeasurement.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/GoogleDataTransport.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/GoogleDataTransport.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/SDWebImageWebPCoder.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/SDWebImageWebPCoder.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/TOCropViewController.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/TOCropViewController.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/agora_rtc_engine.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/contacts_service.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/emoji_picker_flutter.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/emoji_picker_flutter.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/firebase_crashlytics.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/firebase_crashlytics.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/firebase_messaging.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/firebase_messaging.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/firebase_storage.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/flutter_video_info.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/flutter_video_info.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/geolocator_apple.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/google_mobile_ads.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/mobile-ffmpeg-audio.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/mobile-ffmpeg-audio.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/mobile-ffmpeg-full.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/permission_handler.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/permission_handler.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/shared_preferences.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/shared_preferences.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/XCBuildData/BuildDescriptionCacheIndex-694f3cda2ebeca2a6621b1cd5b5ef957: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/ios/build/XCBuildData/BuildDescriptionCacheIndex-694f3cda2ebeca2a6621b1cd5b5ef957 -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig" 3 | #include "Generated.xcconfig" 4 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcuserdata/mymac.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/ios/Runner.xcworkspace/xcuserdata/mymac.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/DKImagePickerController.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/DKImagePickerController.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/FirebaseCoreDiagnostics.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/FirebaseCoreDiagnostics.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/FirebaseInstallations.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/Google-Mobile-Ads-SDK.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/flutter_image_compress.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/flutter_image_compress.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/flutter_native_timezone.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/flutter_native_timezone.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/flutter_ringtone_player.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/flutter_secure_storage.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/flutter_secure_storage.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/receive_sharing_intent.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/receive_sharing_intent.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/DKPhotoGallery-DKPhotoGallery.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/DKPhotoGallery-DKPhotoGallery.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/GoogleUserMessagingPlatform.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/GoogleUserMessagingPlatform.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/flutter_local_notifications.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/flutter_local_notifications.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/gRPC-C++-gRPCCertificates-Cpp.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/gRPC-C++-gRPCCertificates-Cpp.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/DKImagePickerController-DKImagePickerController.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/DKImagePickerController-DKImagePickerController.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/TOCropViewController-TOCropViewControllerBundle.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Aug 25 202119:35:39 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/build/Pods.build/Release-iphonesimulator/TOCropViewController-TOCropViewControllerBundle.build/dgph~: -------------------------------------------------------------------------------- 1 | DGPH1.04 Dec 21 202021:57:26 2 | /Usersmymac DocumentsflutterExercise NULL_SAFETY with status fiberchatios Pods 3 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcuserdata/mymac.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcuserdata/mymac.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /functions/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | env: { 4 | es6: true, 5 | node: true, 6 | }, 7 | extends: [ 8 | "eslint:recommended", 9 | "google", 10 | ], 11 | rules: { 12 | quotes: ["error", "double"], 13 | }, 14 | }; 15 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | com.fiberchat.fiberchat 4 | 5 | fcm_default_channel 6 | 7 | 8 | -------------------------------------------------------------------------------- /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-7.0.2-all.zip 7 | -------------------------------------------------------------------------------- /ios/Runner/Runner.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | aps-environment 6 | development 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/Utils/unawaited.dart: -------------------------------------------------------------------------------- 1 | //************* © Copyrighted by Thinkcreative_Technologies. An Exclusive item of Envato market. Make sure you have purchased a Regular License OR Extended license for the Source Code from Envato to use this product. See the License Defination attached with source code. ********************* 2 | 3 | void unawaited(Future future) {} 4 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcuserdata/mymac.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildLocationStyle 6 | UseTargetSettings 7 | 8 | 9 | -------------------------------------------------------------------------------- /lib/Models/E2EE/e2ee.dart: -------------------------------------------------------------------------------- 1 | //************* © Copyrighted by Thinkcreative_Technologies. An Exclusive item of Envato market. Make sure you have purchased a Regular License OR Extended license for the Source Code from Envato to use this product. See the License Defination attached with source code. ********************* 2 | 3 | library e2ee; 4 | 5 | export 'key.dart'; 6 | export 'x25519.dart'; 7 | -------------------------------------------------------------------------------- /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/Services/Providers/FirebaseAPIProvider.dart: -------------------------------------------------------------------------------- 1 | import 'package:cloud_firestore/cloud_firestore.dart'; 2 | 3 | class FirebaseApi { 4 | static Future getFirestoreCOLLECTIONData(int limit, 5 | {DocumentSnapshot? startAfter, String? dataType, Query? refdata}) async { 6 | if (startAfter == null) { 7 | return refdata!.get(); 8 | } else { 9 | return refdata!.startAfterDocument(startAfter).get(); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /lib/Services/Providers/seen_state.dart: -------------------------------------------------------------------------------- 1 | //************* © Copyrighted by Thinkcreative_Technologies. An Exclusive item of Envato market. Make sure you have purchased a Regular License OR Extended license for the Source Code from Envato to use this product. See the License Defination attached with source code. ********************* 2 | 3 | import 'package:flutter/material.dart'; 4 | 5 | class SeenState extends ValueNotifier { 6 | SeenState(value) : super(value); 7 | } 8 | -------------------------------------------------------------------------------- /ios/Runner/GeneratedPluginRegistrant.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | // clang-format off 6 | 7 | #ifndef GeneratedPluginRegistrant_h 8 | #define GeneratedPluginRegistrant_h 9 | 10 | #import 11 | 12 | NS_ASSUME_NONNULL_BEGIN 13 | 14 | @interface GeneratedPluginRegistrant : NSObject 15 | + (void)registerWithRegistry:(NSObject*)registry; 16 | @end 17 | 18 | NS_ASSUME_NONNULL_END 19 | #endif /* GeneratedPluginRegistrant_h */ 20 | -------------------------------------------------------------------------------- /Screenshot/68747470733a2f2f666972656261736573746f726167652e676f6f676c65617069732e636f6d2f76302f622f6669626572636861742d66313636662e61707073706f742e636f6d2f6f2f67726170686963732532467472616e736c6174696f6e2d6d696e2e6a7065673f616c7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/Screenshot/68747470733a2f2f666972656261736573746f726167652e676f6f676c65617069732e636f6d2f76302f622f6669626572636861742d66313636662e61707073706f742e636f6d2f6f2f67726170686963732532467472616e736c6174696f6e2d6d696e2e6a7065673f616c7.jpg -------------------------------------------------------------------------------- /Screenshot/68747470733a2f2f666972656261736573746f726167652e676f6f676c65617069732e636f6d2f76302f622f73746f72656d61737465722d63343964332e61707073706f742e636f6d2f6f2f6669626572636861745f6e657725324663322e6a70673f616c743d6d656469612.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/Screenshot/68747470733a2f2f666972656261736573746f726167652e676f6f676c65617069732e636f6d2f76302f622f73746f72656d61737465722d63343964332e61707073706f742e636f6d2f6f2f6669626572636861745f6e657725324663322e6a70673f616c743d6d656469612.jpg -------------------------------------------------------------------------------- /Screenshot/68747470733a2f2f666972656261736573746f726167652e676f6f676c65617069732e636f6d2f76302f622f73746f72656d61737465722d63343964332e61707073706f742e636f6d2f6f2f6669626572636861745f6e657725324663332e6a70673f616c743d6d656469612.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/Screenshot/68747470733a2f2f666972656261736573746f726167652e676f6f676c65617069732e636f6d2f76302f622f73746f72656d61737465722d63343964332e61707073706f742e636f6d2f6f2f6669626572636861745f6e657725324663332e6a70673f616c743d6d656469612.jpg -------------------------------------------------------------------------------- /Screenshot/68747470733a2f2f666972656261736573746f726167652e676f6f676c65617069732e636f6d2f76302f622f73746f72656d61737465722d63343964332e61707073706f742e636f6d2f6f2f6669626572636861745f6e65772532466373735f6e65775f66656174757265732.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/Screenshot/68747470733a2f2f666972656261736573746f726167652e676f6f676c65617069732e636f6d2f76302f622f73746f72656d61737465722d63343964332e61707073706f742e636f6d2f6f2f6669626572636861745f6e65772532466373735f6e65775f66656174757265732.jpg -------------------------------------------------------------------------------- /Screenshot/68747470733a2f2f666972656261736573746f726167652e676f6f676c65617069732e636f6d2f76302f622f73746f72656d61737465722d63343964332e61707073706f742e636f6d2f6f2f6669626572636861745f6e65772532466d312d6d696e2e6a70673f616c743d6d6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/Screenshot/68747470733a2f2f666972656261736573746f726167652e676f6f676c65617069732e636f6d2f76302f622f73746f72656d61737465722d63343964332e61707073706f742e636f6d2f6f2f6669626572636861745f6e65772532466d312d6d696e2e6a70673f616c743d6d6.jpg -------------------------------------------------------------------------------- /Screenshot/68747470733a2f2f666972656261736573746f726167652e676f6f676c65617069732e636f6d2f76302f622f73746f72656d61737465722d63343964332e61707073706f742e636f6d2f6f2f6669626572636861745f6e65772532466f7468657266656174757265732e6a706.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranshulagrawal/fiberchat/HEAD/Screenshot/68747470733a2f2f666972656261736573746f726167652e676f6f676c65617069732e636f6d2f76302f622f73746f72656d61737465722d63343964332e61707073706f742e636f6d2f6f2f6669626572636861745f6e65772532466f7468657266656174757265732e6a706.jpg -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /ios/Flutter/Generated.xcconfig: -------------------------------------------------------------------------------- 1 | // This is a generated file; do not edit or check into version control. 2 | FLUTTER_ROOT=C:\flutter 3 | FLUTTER_APPLICATION_PATH=C:\Users\asus\Downloads\fiberchat-1033\fiberchat 4 | COCOAPODS_PARALLEL_CODE_SIGN=true 5 | FLUTTER_TARGET=lib\main.dart 6 | FLUTTER_BUILD_DIR=build 7 | FLUTTER_BUILD_NAME=1.0.33 8 | FLUTTER_BUILD_NUMBER=34 9 | EXCLUDED_ARCHS[sdk=iphonesimulator*]=i386 10 | DART_OBFUSCATION=false 11 | TRACK_WIDGET_CREATION=false 12 | TREE_SHAKE_ICONS=false 13 | PACKAGE_CONFIG=.packages 14 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/Configs/Enum.dart: -------------------------------------------------------------------------------- 1 | //************* © Copyrighted by Thinkcreative_Technologies. An Exclusive item of Envato market. Make sure you have purchased a Regular License OR Extended license for the Source Code from Envato to use this product. See the License Defination attached with source code. ********************* 2 | 3 | enum ChatStatus { blocked, waiting, requested, accepted, broadcast } 4 | enum MessageType { text, image, video, doc, location, contact, audio } 5 | enum AuthenticationType { passcode, biometric } 6 | enum Themetype { messenger, whatsapp } 7 | -------------------------------------------------------------------------------- /lib/Screens/chat_screen/utils/messagedata.dart: -------------------------------------------------------------------------------- 1 | //************* © Copyrighted by Thinkcreative_Technologies. An Exclusive item of Envato market. Make sure you have purchased a Regular License OR Extended license for the Source Code from Envato to use this product. See the License Defination attached with source code. ********************* 2 | 3 | import 'package:cloud_firestore/cloud_firestore.dart'; 4 | 5 | class MessageData { 6 | int? lastSeen; 7 | QuerySnapshot snapshot; 8 | MessageData({required this.snapshot, required this.lastSeen}); 9 | } 10 | -------------------------------------------------------------------------------- /ios/Flutter/flutter_export_environment.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # This is a generated file; do not edit or check into version control. 3 | export "FLUTTER_ROOT=C:\flutter" 4 | export "FLUTTER_APPLICATION_PATH=C:\Users\asus\Downloads\fiberchat-1033\fiberchat" 5 | export "COCOAPODS_PARALLEL_CODE_SIGN=true" 6 | export "FLUTTER_TARGET=lib\main.dart" 7 | export "FLUTTER_BUILD_DIR=build" 8 | export "FLUTTER_BUILD_NAME=1.0.33" 9 | export "FLUTTER_BUILD_NUMBER=34" 10 | export "DART_OBFUSCATION=false" 11 | export "TRACK_WIDGET_CREATION=false" 12 | export "TREE_SHAKE_ICONS=false" 13 | export "PACKAGE_CONFIG=.packages" 14 | -------------------------------------------------------------------------------- /lib/widgets/Passcode/shake_curve.dart: -------------------------------------------------------------------------------- 1 | //************* © Copyrighted by Thinkcreative_Technologies. An Exclusive item of Envato market. Make sure you have purchased a Regular License OR Extended license for the Source Code from Envato to use this product. See the License Defination attached with source code. ********************* 2 | 3 | import 'dart:core'; 4 | import 'dart:math'; 5 | import 'package:flutter/animation.dart'; 6 | 7 | class ShakeCurve extends Curve { 8 | @override 9 | double transform(double t) { 10 | //t from 0.0 to 1.0 11 | return sin(t * 3 * pi).abs(); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "functions", 3 | "description": "Cloud Functions for Firebase", 4 | "scripts": { 5 | "serve": "firebase emulators:start --only functions", 6 | "shell": "firebase functions:shell", 7 | "start": "npm run shell", 8 | "deploy": "firebase deploy --only functions", 9 | "logs": "firebase functions:log" 10 | }, 11 | "engines": { 12 | "node": "12" 13 | }, 14 | "main": "index.js", 15 | "dependencies": { 16 | "firebase-admin": "^9.2.0", 17 | "firebase-functions": "^3.16.0" 18 | }, 19 | "devDependencies": { 20 | "firebase-functions-test": "^0.2.0" 21 | }, 22 | "private": true 23 | } 24 | -------------------------------------------------------------------------------- /lib/widgets/PhoneField/phone_number.dart: -------------------------------------------------------------------------------- 1 | //************* © Copyrighted by Thinkcreative_Technologies. An Exclusive item of Envato market. Make sure you have purchased a Regular License OR Extended license for the Source Code from Envato to use this product. See the License Defination attached with source code. ********************* 2 | 3 | class PhoneNumber { 4 | String? countryISOCode; 5 | String? countryCode; 6 | String? number; 7 | 8 | PhoneNumber({ 9 | required this.countryISOCode, 10 | required this.countryCode, 11 | required this.number, 12 | }); 13 | 14 | String get completeNumber { 15 | return countryCode! + number!; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /lib/Services/Providers/currentchat_peer.dart: -------------------------------------------------------------------------------- 1 | //************* © Copyrighted by Thinkcreative_Technologies. An Exclusive item of Envato market. Make sure you have purchased a Regular License OR Extended license for the Source Code from Envato to use this product. See the License Defination attached with source code. ********************* 2 | 3 | import 'package:flutter/foundation.dart'; 4 | 5 | class CurrentChatPeer with ChangeNotifier { 6 | String? peerid = ''; 7 | String? groupChatId = ''; 8 | 9 | setpeer({ 10 | String? newpeerid, 11 | String? newgroupChatId, 12 | }) { 13 | peerid = newpeerid ?? peerid; 14 | groupChatId = newgroupChatId ?? groupChatId; 15 | notifyListeners(); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | -keepclassmembers class * { 2 | @android.webkit.JavascriptInterface ; 3 | } 4 | 5 | 6 | 7 | 8 | 9 | -keep class io.flutter.app.** { *; } 10 | -keep class io.flutter.plugin.** { *; } 11 | -keep class io.flutter.util.** { *; } 12 | -keep class io.flutter.view.** { *; } 13 | -keep class io.flutter.** { *; } 14 | -keep class io.flutter.plugins.** { *; } 15 | -keep class io.agora.** {*;} 16 | 17 | 18 | 19 | 20 | 21 | 22 | -keepattributes JavascriptInterface 23 | -keepattributes *Annotation* 24 | 25 | -dontwarn com.razorpay.** 26 | -keep class com.razorpay.** {*;} 27 | 28 | -optimizations !method/inlining/* 29 | 30 | -keepclasseswithmembers class * { 31 | public void onPayment*(...); 32 | } -------------------------------------------------------------------------------- /lib/Services/Providers/DownloadInfoProvider.dart: -------------------------------------------------------------------------------- 1 | //************* © Copyrighted by Thinkcreative_Technologies. An Exclusive item of Envato market. Make sure you have purchased a Regular License OR Extended license for the Source Code from Envato to use this product. See the License Defination attached with source code. ********************* 2 | 3 | import 'package:flutter/foundation.dart'; 4 | 5 | class DownloadInfoprovider with ChangeNotifier { 6 | int totalsize = 0; 7 | double downloadedpercentage = 0.0; 8 | calculatedownloaded( 9 | double newdownloadedpercentage, 10 | int newtotal, 11 | ) { 12 | totalsize = newtotal; 13 | downloadedpercentage = newdownloadedpercentage; 14 | notifyListeners(); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /lib/Services/localization/language.dart: -------------------------------------------------------------------------------- 1 | //************* © Copyrighted by Thinkcreative_Technologies. An Exclusive item of Envato market. Make sure you have purchased a Regular License OR Extended license for the Source Code from Envato to use this product. See the License Defination attached with source code. ********************* 2 | 3 | // ignore: todo 4 | //TODO:---- All localizations settings---- 5 | 6 | class Language { 7 | final int id; 8 | final String flag; 9 | final String name; 10 | final String languageCode; 11 | final String languageNameInEnglish; 12 | 13 | Language(this.id, this.flag, this.name, this.languageCode, 14 | this.languageNameInEnglish); 15 | 16 | static List languageList() { 17 | return [ 18 | Language(1, "🇺🇸", "English", "en", "English"), 19 | ]; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /lib/widgets/MyElevatedButton/MyElevatedButton.dart: -------------------------------------------------------------------------------- 1 | //************* © Copyrighted by Thinkcreative_Technologies. An Exclusive item of Envato market. Make sure you have purchased a Regular License OR Extended license for the Source Code from Envato to use this product. See the License Defination attached with source code. ********************* 2 | 3 | import 'package:flutter/material.dart'; 4 | 5 | Widget myElevatedButton({Color? color, Widget? child, Function? onPressed}) { 6 | return ElevatedButton( 7 | child: child, 8 | onPressed: () { 9 | onPressed!(); 10 | }, 11 | style: ButtonStyle( 12 | elevation: MaterialStateProperty.all(0.5), 13 | backgroundColor: MaterialStateProperty.all(color), 14 | padding: MaterialStateProperty.all(EdgeInsets.all(2)), 15 | // textStyle: MaterialStateProperty.all(TextStyle(color: Colors.black)) 16 | ), 17 | ); 18 | } 19 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /fiberchat.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | ext.kotlin_version = '1.4.31' 3 | // ext.kotlin_version = '1.3.50' 4 | repositories { 5 | google() 6 | jcenter() 7 | mavenCentral() 8 | } 9 | 10 | dependencies { 11 | classpath 'com.android.tools.build:gradle:7.0.2' 12 | classpath 'com.google.gms:google-services:4.3.5' 13 | classpath 'com.google.firebase:firebase-crashlytics-gradle:2.5.1' 14 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" 15 | } 16 | } 17 | 18 | allprojects { 19 | repositories { 20 | google() 21 | jcenter() 22 | mavenCentral() 23 | } 24 | } 25 | 26 | rootProject.buildDir = '../build' 27 | subprojects { 28 | project.buildDir = "${rootProject.buildDir}/${project.name}" 29 | } 30 | subprojects { 31 | project.evaluationDependsOn(':app') 32 | } 33 | 34 | task clean(type: Delete) { 35 | delete rootProject.buildDir 36 | } 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/fiberchat/fiberchat/Application.kt: -------------------------------------------------------------------------------- 1 | 2 | package com.fiberchat.fiberchat 3 | 4 | import io.flutter.app.FlutterApplication 5 | import io.flutter.plugin.common.PluginRegistry 6 | import io.flutter.plugin.common.PluginRegistry.PluginRegistrantCallback 7 | 8 | import io.flutter.view.FlutterMain 9 | 10 | 11 | import com.dexterous.flutterlocalnotifications.FlutterLocalNotificationsPlugin 12 | 13 | 14 | class Application : FlutterApplication(), PluginRegistrantCallback { 15 | 16 | override fun onCreate() { 17 | super.onCreate() 18 | 19 | FlutterMain.startInitialization(this) 20 | } 21 | 22 | override fun registerWith(registry: PluginRegistry?) { 23 | 24 | 25 | if (!registry!!.hasPlugin("com.dexterous.flutterlocalnotifications.FlutterLocalNotificationsPlugin")) { 26 | FlutterLocalNotificationsPlugin.registerWith(registry!!.registrarFor("com.dexterous.flutterlocalnotifications.FlutterLocalNotificationsPlugin")); 27 | } 28 | } 29 | 30 | 31 | } 32 | -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/fiberchat/fiberchat/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.fiberchat.fiberchat 2 | 3 | import android.os.Bundle 4 | import io.flutter.embedding.android.FlutterActivity 5 | import io.flutter.plugin.common.PluginRegistry 6 | 7 | import io.flutter.view.FlutterMain 8 | 9 | import com.dexterous.flutterlocalnotifications.FlutterLocalNotificationsPlugin 10 | 11 | 12 | 13 | class MainActivity : FlutterActivity(), PluginRegistry.PluginRegistrantCallback { 14 | 15 | override fun onCreate(savedInstanceState: Bundle?) { 16 | 17 | super.onCreate(savedInstanceState) 18 | 19 | FlutterMain.startInitialization(this) 20 | } 21 | 22 | override fun registerWith(registry: PluginRegistry?) { 23 | 24 | 25 | if (!registry!!.hasPlugin("com.dexterous.flutterlocalnotifications.FlutterLocalNotificationsPlugin")) { 26 | FlutterLocalNotificationsPlugin.registerWith(registry!!.registrarFor("com.dexterous.flutterlocalnotifications.FlutterLocalNotificationsPlugin")); 27 | } 28 | } 29 | 30 | } -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/Services/Admob/admob.dart: -------------------------------------------------------------------------------- 1 | //************* © Copyrighted by Thinkcreative_Technologies. An Exclusive item of Envato market. Make sure you have purchased a Regular License OR Extended license for the Source Code from Envato to use this product. See the License Defination attached with source code. ********************* 2 | 3 | import 'dart:io'; 4 | import 'package:fiberchat/Configs/app_constants.dart'; 5 | 6 | String? getBannerAdUnitId() { 7 | if (Platform.isIOS) { 8 | return Admob_BannerAdUnitID_Ios; 9 | } else if (Platform.isAndroid) { 10 | return Admob_BannerAdUnitID_Android; 11 | } 12 | return null; 13 | } 14 | 15 | String? getInterstitialAdUnitId() { 16 | if (Platform.isIOS) { 17 | return Admob_InterstitialAdUnitID_Ios; 18 | } else if (Platform.isAndroid) { 19 | return Admob_InterstitialAdUnitID_Android; 20 | } 21 | return null; 22 | } 23 | 24 | String? getRewardBasedVideoAdUnitId() { 25 | if (Platform.isIOS) { 26 | return Admob_RewardedAdUnitID_Ios; 27 | } else if (Platform.isAndroid) { 28 | return Admob_RewardedAdUnitID_Android; 29 | } 30 | return null; 31 | } 32 | -------------------------------------------------------------------------------- /lib/Utils/phonenumberVariantsGenerator.dart: -------------------------------------------------------------------------------- 1 | //************* © Copyrighted by Thinkcreative_Technologies. An Exclusive item of Envato market. Make sure you have purchased a Regular License OR Extended license for the Source Code from Envato to use this product. See the License Defination attached with source code. ********************* 2 | 3 | List phoneNumberVariantsList({ 4 | String? phonenumber, 5 | String? countrycode, 6 | }) { 7 | List list = [ 8 | '+${countrycode!.substring(1)}$phonenumber', 9 | '+${countrycode.substring(1)}-$phonenumber', 10 | '${countrycode.substring(1)}-$phonenumber', 11 | '${countrycode.substring(1)}$phonenumber', 12 | '0${countrycode.substring(1)}$phonenumber', 13 | '0$phonenumber', 14 | '$phonenumber', 15 | '+$phonenumber', 16 | '+${countrycode.substring(1)}--$phonenumber', 17 | '00$phonenumber', 18 | '00${countrycode.substring(1)}$phonenumber', 19 | '+${countrycode.substring(1)}-0$phonenumber', 20 | '+${countrycode.substring(1)}0$phonenumber', 21 | '${countrycode.substring(1)}0$phonenumber', 22 | ]; 23 | return list; 24 | } 25 | -------------------------------------------------------------------------------- /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:fiberchat/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(FiberchatWrapper()); 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 | -------------------------------------------------------------------------------- /lib/Screens/splash_screen/splash_screen.dart: -------------------------------------------------------------------------------- 1 | //************* © Copyrighted by Thinkcreative_Technologies. An Exclusive item of Envato market. Make sure you have purchased a Regular License OR Extended license for the Source Code from Envato to use this product. See the License Defination attached with source code. ********************* 2 | 3 | import 'package:fiberchat/Configs/app_constants.dart'; 4 | import 'package:flutter/material.dart'; 5 | 6 | class Splashscreen extends StatelessWidget { 7 | @override 8 | Widget build(BuildContext context) { 9 | return IsSplashOnlySolidColor == true 10 | ? Scaffold( 11 | backgroundColor: SplashBackgroundSolidColor, 12 | body: Center( 13 | child: CircularProgressIndicator( 14 | valueColor: 15 | AlwaysStoppedAnimation(fiberchatLightGreen)), 16 | )) 17 | : Scaffold( 18 | backgroundColor: SplashBackgroundSolidColor, 19 | body: Center( 20 | child: Image.asset( 21 | '$SplashPath', 22 | width: double.infinity, 23 | fit: BoxFit.cover, 24 | )), 25 | ); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /lib/widgets/Passcode/circle.dart: -------------------------------------------------------------------------------- 1 | //************* © Copyrighted by Thinkcreative_Technologies. An Exclusive item of Envato market. Make sure you have purchased a Regular License OR Extended license for the Source Code from Envato to use this product. See the License Defination attached with source code. ********************* 2 | 3 | import 'package:flutter/material.dart'; 4 | 5 | class CircleUIConfig { 6 | final Color borderColor; 7 | final Color fillColor; 8 | final double borderWidth; 9 | final double circleSize; 10 | double extraSize; 11 | 12 | CircleUIConfig( 13 | {this.extraSize = 0, 14 | this.borderColor = Colors.white, 15 | this.borderWidth = 1, 16 | this.fillColor = Colors.white, 17 | this.circleSize = 20}); 18 | } 19 | 20 | class Circle extends StatelessWidget { 21 | final bool filled; 22 | final CircleUIConfig circleUIConfig; 23 | 24 | Circle({Key? key, this.filled = false, required this.circleUIConfig}) 25 | : super(key: key); 26 | 27 | @override 28 | Widget build(BuildContext context) { 29 | return Container( 30 | margin: EdgeInsets.only(bottom: circleUIConfig.extraSize), 31 | width: circleUIConfig.circleSize, 32 | height: circleUIConfig.circleSize, 33 | decoration: BoxDecoration( 34 | color: filled ? circleUIConfig.fillColor : Colors.transparent, 35 | shape: BoxShape.circle, 36 | border: Border.all( 37 | color: circleUIConfig.borderColor, 38 | width: circleUIConfig.borderWidth)), 39 | ); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /android/fiberchat_android.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /lib/Services/localization/language_constants.dart: -------------------------------------------------------------------------------- 1 | //************* © Copyrighted by Thinkcreative_Technologies. An Exclusive item of Envato market. Make sure you have purchased a Regular License OR Extended license for the Source Code from Envato to use this product. See the License Defination attached with source code. ********************* 2 | 3 | import 'package:fiberchat/Services/localization/demo_localization.dart'; 4 | import 'package:flutter/material.dart'; 5 | import 'package:shared_preferences/shared_preferences.dart'; 6 | 7 | // ignore: todo 8 | //TODO:---- All localizations settings---- 9 | const String LAGUAGE_CODE = 'languageCode'; 10 | 11 | //languages code 12 | const String ENGLISH = 'en'; 13 | List languagelist = [ 14 | ENGLISH, 15 | ]; 16 | List supportedlocale = [ 17 | Locale(ENGLISH, "US"), 18 | ]; 19 | 20 | Future setLocale(String languageCode) async { 21 | print(languageCode); 22 | SharedPreferences _prefs = await SharedPreferences.getInstance(); 23 | await _prefs.setString(LAGUAGE_CODE, languageCode); 24 | return _locale(languageCode); 25 | } 26 | 27 | Future getLocale() async { 28 | print(LAGUAGE_CODE); 29 | SharedPreferences _prefs = await SharedPreferences.getInstance(); 30 | String languageCode = _prefs.getString(LAGUAGE_CODE) ?? "en"; 31 | return _locale(languageCode); 32 | } 33 | 34 | Locale _locale(String languageCode) { 35 | switch (languageCode) { 36 | case ENGLISH: 37 | return Locale(ENGLISH, 'US'); 38 | 39 | default: 40 | return Locale(ENGLISH, 'US'); 41 | } 42 | } 43 | 44 | String getTranslated(BuildContext context, String key) { 45 | return DemoLocalization.of(context)!.translate(key) ?? ''; 46 | } 47 | -------------------------------------------------------------------------------- /lib/Screens/status/components/formatStatusTime.dart: -------------------------------------------------------------------------------- 1 | //************* © Copyrighted by Thinkcreative_Technologies. An Exclusive item of Envato market. Make sure you have purchased a Regular License OR Extended license for the Source Code from Envato to use this product. See the License Defination attached with source code. ********************* 2 | 3 | import 'package:fiberchat/Services/Providers/Observer.dart'; 4 | import 'package:fiberchat/Services/localization/language_constants.dart'; 5 | import 'package:flutter/material.dart'; 6 | import 'package:intl/intl.dart'; 7 | import 'package:provider/provider.dart'; 8 | 9 | getStatusTime(val, BuildContext context) { 10 | final observer = Provider.of(context, listen: false); 11 | if (val is int) { 12 | DateTime date = DateTime.fromMillisecondsSinceEpoch(val); 13 | String at = observer.is24hrsTimeformat == true 14 | ? DateFormat('HH:mm').format(date) 15 | : DateFormat.jm().format(date), 16 | when = getWhen(date, context); 17 | return '$when, $at'; 18 | } 19 | return ''; 20 | } 21 | 22 | getWhen(date, BuildContext context) { 23 | DateTime now = DateTime.now(); 24 | String when; 25 | if (date.day == now.day) 26 | when = getTranslated(context, 'today'); 27 | else if (date.day == now.subtract(Duration(days: 1)).day) 28 | when = getTranslated(context, 'yesterday'); 29 | else 30 | when = DateFormat.MMMd().format(date); 31 | return when; 32 | } 33 | 34 | getJoinTime(val, BuildContext context) { 35 | if (val is int) { 36 | DateTime date = DateTime.fromMillisecondsSinceEpoch(val); 37 | String when = DateFormat.yMMMd().format(date); 38 | return '$when'; 39 | } 40 | return ''; 41 | } 42 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/widgets/Common/cached_image.dart: -------------------------------------------------------------------------------- 1 | //************* © Copyrighted by Thinkcreative_Technologies. An Exclusive item of Envato market. Make sure you have purchased a Regular License OR Extended license for the Source Code from Envato to use this product. See the License Defination attached with source code. ********************* 2 | 3 | import 'package:cached_network_image/cached_network_image.dart'; 4 | import 'package:flutter/material.dart'; 5 | 6 | class CachedImage extends StatelessWidget { 7 | final String? imageUrl; 8 | final bool isRound; 9 | final double radius; 10 | final double? height; 11 | final double? width; 12 | 13 | final BoxFit fit; 14 | 15 | final String noImageAvailable = 16 | "https://www.esm.rochester.edu/uploads/NoPhotoAvailable.jpg"; 17 | 18 | CachedImage( 19 | this.imageUrl, { 20 | this.isRound = false, 21 | this.radius = 0, 22 | this.height, 23 | this.width, 24 | this.fit = BoxFit.cover, 25 | }); 26 | 27 | @override 28 | Widget build(BuildContext context) { 29 | try { 30 | return SizedBox( 31 | height: isRound ? radius : height, 32 | width: isRound ? radius : width, 33 | child: ClipRRect( 34 | borderRadius: BorderRadius.circular(isRound ? 130 : radius), 35 | child: CachedNetworkImage( 36 | imageUrl: imageUrl!, 37 | fit: fit, 38 | placeholder: (context, url) => 39 | Center(child: CircularProgressIndicator()), 40 | errorWidget: (context, url, error) => 41 | Image.network(noImageAvailable, fit: BoxFit.cover), 42 | )), 43 | ); 44 | } catch (e) { 45 | print(e); 46 | return Image.network(noImageAvailable, fit: BoxFit.cover); 47 | } 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /lib/Configs/Dbpaths.dart: -------------------------------------------------------------------------------- 1 | //************* © Copyrighted by Thinkcreative_Technologies. An Exclusive item of Envato market. Make sure you have purchased a Regular License OR Extended license for the Source Code from Envato to use this product. See the License Defination attached with source code. ********************* 2 | 3 | // ignore: todo 4 | ////TODO WARNING: DO NOT EDIT THIS PAGE UNLESS YOU ARE A DEVELOPER. THIS PAGE HAS ALL THE KEYS USED IN FIRESTORE & FIREBASE TORAGEDATABASE ----- 5 | 6 | class DbPaths { 7 | static final String collectionTXNHIGHalerts = 'txnalerts'; 8 | static final String collectionALLNORMALalerts = 'nmlalerts'; 9 | 10 | static final String collectiondashboard = 'dashboard'; 11 | static final String collectioncountrywiseData = 'countrywisedata'; 12 | 13 | static final String docchatdata = 'chatdata'; 14 | static final String docuserscount = 'userscount'; 15 | 16 | static final String collectionusers = 'users'; 17 | static final String collectiontemptokensforunsubscribe = 18 | 'tempUnsubscribeTokens'; 19 | static final String collectionmessages = 'messages'; 20 | static final String collectioncall = 'call'; 21 | static final String collectioncallhistory = 'callhistory'; 22 | 23 | static final String collectionnotifications = 'notifications'; 24 | static final String adminnotifications = 'adminnotifications'; 25 | static final String usersnotifications = 'usersnotifications'; 26 | static final String collectionhistory = 'history'; 27 | static final String collectionnstatus = 'status'; 28 | static final String collectiongroups = 'groups'; 29 | 30 | static final String collectiongroupChats = 'groupChats'; 31 | static final String collectionbroadcasts = 'broadcasts'; 32 | static final String collectionbroadcastsChats = 'broadcastChats'; 33 | } 34 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![Demo Screen](https://github.com/pranshulagrawal/fiberchat/blob/master/Screenshot/68747470733a2f2f666972656261736573746f726167652e676f6f676c65617069732e636f6d2f76302f622f73746f72656d61737465722d63343964332e61707073706f742e636f6d2f6f2f6669626572636861745f6e657725324663322e6a70673f616c743d6d656469612.jpg) 2 | 3 | ![Demo Screen](https://github.com/pranshulagrawal/fiberchat/blob/master/Screenshot/68747470733a2f2f666972656261736573746f726167652e676f6f676c65617069732e636f6d2f76302f622f73746f72656d61737465722d63343964332e61707073706f742e636f6d2f6f2f6669626572636861745f6e657725324663332e6a70673f616c743d6d656469612.jpg) 4 | 5 | ![Demo Screen](https://github.com/pranshulagrawal/fiberchat/blob/master/Screenshot/68747470733a2f2f666972656261736573746f726167652e676f6f676c65617069732e636f6d2f76302f622f73746f72656d61737465722d63343964332e61707073706f742e636f6d2f6f2f6669626572636861745f6e65772532466d312d6d696e2e6a70673f616c743d6d6.jpg) 6 | 7 | ![Demo Screen](https://github.com/pranshulagrawal/fiberchat/blob/master/Screenshot/68747470733a2f2f666972656261736573746f726167652e676f6f676c65617069732e636f6d2f76302f622f73746f72656d61737465722d63343964332e61707073706f742e636f6d2f6f2f6669626572636861745f6e65772532466373735f6e65775f66656174757265732.jpg) 8 | 9 | ![Demo Screen](https://github.com/pranshulagrawal/fiberchat/blob/master/Screenshot/68747470733a2f2f666972656261736573746f726167652e676f6f676c65617069732e636f6d2f76302f622f73746f72656d61737465722d63343964332e61707073706f742e636f6d2f6f2f6669626572636861745f6e65772532466f7468657266656174757265732e6a706.jpg) 10 | 11 | ![Demo Screen](https://github.com/pranshulagrawal/fiberchat/blob/master/Screenshot/68747470733a2f2f666972656261736573746f726167652e676f6f676c65617069732e636f6d2f76302f622f6669626572636861742d66313636662e61707073706f742e636f6d2f6f2f67726170686963732532467472616e736c6174696f6e2d6d696e2e6a7065673f616c7.jpg) 12 | -------------------------------------------------------------------------------- /lib/Services/Providers/user_provider.dart: -------------------------------------------------------------------------------- 1 | //************* © Copyrighted by Thinkcreative_Technologies. An Exclusive item of Envato market. Make sure you have purchased a Regular License OR Extended license for the Source Code from Envato to use this product. See the License Defination attached with source code. ********************* 2 | 3 | import 'package:cloud_firestore/cloud_firestore.dart'; 4 | import 'package:fiberchat/Configs/Dbpaths.dart'; 5 | import 'package:flutter/widgets.dart'; 6 | 7 | class UserProvider with ChangeNotifier { 8 | UserModel? _user; 9 | 10 | UserModel? get getUser => _user; 11 | 12 | getUserDetails(String? phone) async { 13 | DocumentSnapshot documentSnapshot = await FirebaseFirestore.instance 14 | .collection(DbPaths.collectionusers) 15 | .doc(phone) 16 | .get(); 17 | 18 | _user = UserModel.fromMap(documentSnapshot.data() as Map); 19 | notifyListeners(); 20 | } 21 | } 22 | 23 | class UserModel { 24 | String? uid; 25 | String? name; 26 | String? phone; 27 | String? username; 28 | String? status; 29 | int? state; 30 | String? profilePhoto; 31 | 32 | UserModel({ 33 | this.uid, 34 | this.name, 35 | this.phone, 36 | this.username, 37 | this.status, 38 | this.state, 39 | this.profilePhoto, 40 | }); 41 | 42 | Map toMap(UserModel user) { 43 | var data = Map(); 44 | data['id'] = user.uid; 45 | data['nickname'] = user.name; 46 | data['phone'] = user.phone; 47 | data["photoUrl"] = user.profilePhoto; 48 | return data; 49 | } 50 | 51 | // Named constructor 52 | UserModel.fromMap(Map mapData) { 53 | this.uid = mapData['id']; 54 | this.name = mapData['nickname']; 55 | this.phone = mapData['phone']; 56 | this.profilePhoto = mapData['photoUrl']; 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /lib/Screens/calling_screen/pickup_layout.dart: -------------------------------------------------------------------------------- 1 | //************* © Copyrighted by Thinkcreative_Technologies. An Exclusive item of Envato market. Make sure you have purchased a Regular License OR Extended license for the Source Code from Envato to use this product. See the License Defination attached with source code. ********************* 2 | 3 | import 'package:cloud_firestore/cloud_firestore.dart'; 4 | import 'package:fiberchat/Screens/splash_screen/splash_screen.dart'; 5 | import 'package:flutter/material.dart'; 6 | import 'package:provider/provider.dart'; 7 | import 'package:fiberchat/Models/call.dart'; 8 | import 'package:fiberchat/Services/Providers/user_provider.dart'; 9 | import 'package:fiberchat/Models/call_methods.dart'; 10 | import 'package:fiberchat/Screens/calling_screen/pickup_screen.dart'; 11 | 12 | class PickupLayout extends StatelessWidget { 13 | final Widget scaffold; 14 | final CallMethods callMethods = CallMethods(); 15 | 16 | PickupLayout({ 17 | required this.scaffold, 18 | }); 19 | 20 | @override 21 | Widget build(BuildContext context) { 22 | final UserProvider userProvider = Provider.of(context); 23 | 24 | // ignore: unnecessary_null_comparison 25 | return (userProvider != null && userProvider.getUser != null) 26 | ? StreamBuilder( 27 | stream: callMethods.callStream(phone: userProvider.getUser!.phone), 28 | builder: (context, snapshot) { 29 | if (snapshot.hasData && snapshot.data!.data() != null) { 30 | Call call = Call.fromMap( 31 | snapshot.data!.data() as Map); 32 | 33 | if (!call.hasDialled!) { 34 | return PickupScreen( 35 | call: call, 36 | currentuseruid: userProvider.getUser!.phone, 37 | ); 38 | } 39 | } 40 | return scaffold; 41 | }, 42 | ) 43 | : Splashscreen(); 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /lib/Services/Providers/seen_provider.dart: -------------------------------------------------------------------------------- 1 | //************* © Copyrighted by Thinkcreative_Technologies. An Exclusive item of Envato market. Make sure you have purchased a Regular License OR Extended license for the Source Code from Envato to use this product. See the License Defination attached with source code. ********************* 2 | 3 | import 'package:fiberchat/Services/Providers/seen_state.dart'; 4 | import 'package:fiberchat/Screens/chat_screen/Widget/bubble.dart'; 5 | import 'package:flutter/widgets.dart'; 6 | 7 | class SeenProvider extends StatefulWidget { 8 | const SeenProvider({this.timestamp, this.data, this.child}); 9 | final SeenState? data; 10 | final Bubble? child; 11 | final String? timestamp; 12 | static of(BuildContext context) { 13 | _SeenInheritedProvider? p = context.dependOnInheritedWidgetOfExactType( 14 | aspect: _SeenInheritedProvider); 15 | return p!.data; 16 | } 17 | 18 | @override 19 | State createState() => new _SeenProviderState(); 20 | } 21 | 22 | class _SeenProviderState extends State { 23 | @override 24 | initState() { 25 | super.initState(); 26 | widget.data!.addListener(didValueChange); 27 | } 28 | 29 | didValueChange() { 30 | if (mounted) this.setState(() {}); 31 | } 32 | 33 | @override 34 | dispose() { 35 | widget.data!.removeListener(didValueChange); 36 | super.dispose(); 37 | } 38 | 39 | @override 40 | Widget build(BuildContext context) { 41 | return new _SeenInheritedProvider( 42 | data: widget.data, 43 | child: widget.child ?? SizedBox(), 44 | ); 45 | } 46 | } 47 | 48 | class _SeenInheritedProvider extends InheritedWidget { 49 | _SeenInheritedProvider({required this.data, required this.child}) 50 | : _dataValue = data.value, 51 | super(child: child); 52 | final data; 53 | final Widget child; 54 | final _dataValue; 55 | @override 56 | bool updateShouldNotify(_SeenInheritedProvider oldWidget) { 57 | return _dataValue != oldWidget._dataValue; 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /lib/Models/call.dart: -------------------------------------------------------------------------------- 1 | //************* © Copyrighted by Thinkcreative_Technologies. An Exclusive item of Envato market. Make sure you have purchased a Regular License OR Extended license for the Source Code from Envato to use this product. See the License Defination attached with source code. ********************* 2 | 3 | class Call { 4 | String? callerId; 5 | String? callerName; 6 | String? callerPic; 7 | String? receiverId; 8 | String? receiverName; 9 | String? receiverPic; 10 | String? channelId; 11 | int? timeepoch; 12 | bool? hasDialled; 13 | bool? isvideocall; 14 | 15 | Call({ 16 | this.callerId, 17 | this.callerName, 18 | this.callerPic, 19 | this.receiverId, 20 | this.receiverName, 21 | this.receiverPic, 22 | this.timeepoch, 23 | this.channelId, 24 | this.hasDialled, 25 | this.isvideocall, 26 | }); 27 | 28 | // to map 29 | Map toMap(Call call) { 30 | Map callMap = Map(); 31 | callMap["caller_id"] = call.callerId; 32 | callMap["caller_name"] = call.callerName; 33 | callMap["caller_pic"] = call.callerPic; 34 | callMap["receiver_id"] = call.receiverId; 35 | callMap["receiver_name"] = call.receiverName; 36 | callMap["receiver_pic"] = call.receiverPic; 37 | callMap["channel_id"] = call.channelId; 38 | callMap["has_dialled"] = call.hasDialled; 39 | callMap["isvideocall"] = call.isvideocall; 40 | callMap["timeepoch"] = call.timeepoch; 41 | return callMap; 42 | } 43 | 44 | Call.fromMap(Map callMap) { 45 | this.callerId = callMap["caller_id"]; 46 | this.callerName = callMap["caller_name"]; 47 | this.callerPic = callMap["caller_pic"]; 48 | this.receiverId = callMap["receiver_id"]; 49 | this.receiverName = callMap["receiver_name"]; 50 | this.receiverPic = callMap["receiver_pic"]; 51 | this.channelId = callMap["channel_id"]; 52 | this.hasDialled = callMap["has_dialled"]; 53 | this.isvideocall = callMap["isvideocall"]; 54 | this.timeepoch = callMap["timeepoch"]; 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /lib/Models/call_methods.dart: -------------------------------------------------------------------------------- 1 | //************* © Copyrighted by Thinkcreative_Technologies. An Exclusive item of Envato market. Make sure you have purchased a Regular License OR Extended license for the Source Code from Envato to use this product. See the License Defination attached with source code. ********************* 2 | 3 | import 'package:cloud_firestore/cloud_firestore.dart'; 4 | import 'package:fiberchat/Configs/Dbpaths.dart'; 5 | import 'package:fiberchat/Models/call.dart'; 6 | 7 | class CallMethods { 8 | Stream callStream({String? phone}) => 9 | FirebaseFirestore.instance 10 | .collection(DbPaths.collectioncall) 11 | .doc(phone) 12 | .snapshots(); 13 | 14 | Future makeCall( 15 | {required Call call, 16 | required bool? isvideocall, 17 | required int timeepoch}) async { 18 | try { 19 | call.hasDialled = true; 20 | Map hasDialledMap = call.toMap(call); 21 | 22 | call.hasDialled = false; 23 | Map hasNotDialledMap = call.toMap(call); 24 | 25 | await FirebaseFirestore.instance 26 | .collection(DbPaths.collectioncall) 27 | .doc(call.callerId) 28 | .set(hasDialledMap, SetOptions(merge: true)); 29 | 30 | await FirebaseFirestore.instance 31 | .collection(DbPaths.collectioncall) 32 | .doc(call.receiverId) 33 | .set(hasNotDialledMap, SetOptions(merge: true)); 34 | return true; 35 | } catch (e) { 36 | print(e); 37 | return false; 38 | } 39 | } 40 | 41 | Future endCall({required Call call}) async { 42 | try { 43 | await FirebaseFirestore.instance 44 | .collection(DbPaths.collectioncall) 45 | .doc(call.callerId) 46 | .delete(); 47 | await FirebaseFirestore.instance 48 | .collection(DbPaths.collectioncall) 49 | .doc(call.receiverId) 50 | .delete(); 51 | return true; 52 | } catch (e) { 53 | print(e); 54 | return false; 55 | } 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /lib/Services/localization/demo_localization.dart: -------------------------------------------------------------------------------- 1 | //************* © Copyrighted by Thinkcreative_Technologies. An Exclusive item of Envato market. Make sure you have purchased a Regular License OR Extended license for the Source Code from Envato to use this product. See the License Defination attached with source code. ********************* 2 | 3 | import 'dart:convert'; 4 | import 'package:fiberchat/Services/localization/language_constants.dart'; 5 | import 'package:flutter/material.dart'; 6 | import 'package:flutter/services.dart'; 7 | 8 | class DemoLocalization { 9 | DemoLocalization(this.locale); 10 | 11 | final Locale locale; 12 | static DemoLocalization? of(BuildContext context) { 13 | return Localizations.of(context, DemoLocalization); 14 | } 15 | 16 | late Map _localizedValues; 17 | 18 | Future load() async { 19 | String jsonStringValues = await rootBundle.loadString( 20 | 'lib/Services/localization/json_languages/${locale.languageCode}.json'); 21 | Map mappedJson = json.decode(jsonStringValues); 22 | _localizedValues = 23 | mappedJson.map((key, value) => MapEntry(key, value.toString())); 24 | } 25 | 26 | String? translate(String key) { 27 | return _localizedValues[key]; 28 | } 29 | 30 | // static member to have simple access to the delegate from Material App 31 | static const LocalizationsDelegate delegate = 32 | _DemoLocalizationsDelegate(); 33 | } 34 | 35 | class _DemoLocalizationsDelegate 36 | extends LocalizationsDelegate { 37 | const _DemoLocalizationsDelegate(); 38 | 39 | @override 40 | bool isSupported(Locale locale) { 41 | return languagelist.contains(locale.languageCode); 42 | } 43 | 44 | @override 45 | Future load(Locale locale) async { 46 | DemoLocalization localization = new DemoLocalization(locale); 47 | await localization.load(); 48 | return localization; 49 | } 50 | 51 | @override 52 | bool shouldReload(LocalizationsDelegate old) => false; 53 | } 54 | -------------------------------------------------------------------------------- /lib/Screens/chat_screen/utils/message.dart: -------------------------------------------------------------------------------- 1 | //************* © Copyrighted by Thinkcreative_Technologies. An Exclusive item of Envato market. Make sure you have purchased a Regular License OR Extended license for the Source Code from Envato to use this product. See the License Defination attached with source code. ********************* 2 | 3 | import 'package:fiberchat/Services/Providers/seen_provider.dart'; 4 | import 'package:flutter/material.dart'; 5 | 6 | class Message { 7 | Message(Widget child, 8 | {required this.timestamp, 9 | required this.from, 10 | required this.onTap, 11 | required this.onDoubleTap, 12 | required this.onDismiss, 13 | required this.onLongPress, 14 | this.saved = false}) 15 | : child = wrapMessage( 16 | child: child as SeenProvider, 17 | onDismiss: onDismiss, 18 | onDoubleTap: onDoubleTap, 19 | onTap: onTap, 20 | onLongPress: onLongPress, 21 | saved: saved); 22 | 23 | final String? from; 24 | final Widget child; 25 | final int? timestamp; 26 | final VoidCallback? onTap, onDoubleTap, onDismiss, onLongPress; 27 | final bool saved; 28 | static Widget wrapMessage( 29 | {required SeenProvider child, 30 | required onDismiss, 31 | required onDoubleTap, 32 | required onTap, 33 | required onLongPress, 34 | required bool saved}) { 35 | return Dismissible( 36 | direction: DismissDirection.startToEnd, 37 | key: Key(child.timestamp!), 38 | confirmDismiss: (direction) { 39 | onDismiss(); 40 | return Future.value(false); 41 | }, 42 | child: child.child!.isMe 43 | ? GestureDetector( 44 | child: child, 45 | onTap: onTap, 46 | onDoubleTap: onDoubleTap, 47 | onLongPress: onLongPress, 48 | ) 49 | : GestureDetector( 50 | child: child, 51 | onDoubleTap: onDoubleTap, 52 | onTap: onTap, 53 | onLongPress: onLongPress, 54 | )); 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /lib/Screens/chat_screen/utils/uploadMediaWithProgress.dart: -------------------------------------------------------------------------------- 1 | //************* © Copyrighted by Thinkcreative_Technologies. An Exclusive item of Envato market. Make sure you have purchased a Regular License OR Extended license for the Source Code from Envato to use this product. See the License Defination attached with source code. ********************* 2 | 3 | import 'package:fiberchat/Configs/app_constants.dart'; 4 | import 'package:firebase_storage/firebase_storage.dart'; 5 | import 'package:flutter/material.dart'; 6 | import 'package:percent_indicator/circular_percent_indicator.dart'; 7 | 8 | double bytesTransferred(TaskSnapshot snapshot) { 9 | double res = snapshot.bytesTransferred / 1024.0; 10 | double res2 = snapshot.totalBytes / 1024.0; 11 | print('${((res / res2) * 100).roundToDouble().toString()} %'); 12 | return ((res / res2) * 100).roundToDouble(); 13 | } 14 | 15 | openUploadDialog( 16 | {required BuildContext context, 17 | double? percent, 18 | required String title, 19 | required String subtitle}) { 20 | return Row( 21 | mainAxisAlignment: MainAxisAlignment.center, 22 | crossAxisAlignment: CrossAxisAlignment.center, 23 | children: [ 24 | new CircularPercentIndicator( 25 | radius: 55.0, 26 | lineWidth: 4.0, 27 | percent: percent ?? 0.0, 28 | center: new Text( 29 | percent == null ? '0%' : "${(percent * 100).roundToDouble()}%", 30 | style: TextStyle(fontSize: 11), 31 | ), 32 | progressColor: Colors.green[400], 33 | ), 34 | Container( 35 | width: 195, 36 | padding: EdgeInsets.only(left: 3), 37 | child: ListTile( 38 | dense: false, 39 | title: Text( 40 | title, 41 | textAlign: TextAlign.left, 42 | style: TextStyle( 43 | height: 1.3, fontWeight: FontWeight.w600, fontSize: 14), 44 | ), 45 | subtitle: Text( 46 | subtitle, 47 | textAlign: TextAlign.left, 48 | style: TextStyle(height: 2.2, color: fiberchatGrey), 49 | ), 50 | ), 51 | ), 52 | ], 53 | ); 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 | --------------------------------------------------------------------------------