This commit is contained in:
mohanmd 2026-04-16 15:06:41 +05:30
commit b69227a3ad
153 changed files with 8657 additions and 0 deletions

45
.gitignore vendored Normal file
View File

@ -0,0 +1,45 @@
# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.build/
.buildlog/
.history
.svn/
.swiftpm/
migrate_working_dir/
# IntelliJ related
*.iml
*.ipr
*.iws
.idea/
# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/
# Flutter/Dart/Pub related
**/doc/api/
**/ios/Flutter/.last_build_id
.dart_tool/
.flutter-plugins-dependencies
.pub-cache/
.pub/
/build/
/coverage/
# Symbolication related
app.*.symbols
# Obfuscation related
app.*.map.json
# Android Studio will place build artifacts here
/android/app/debug
/android/app/profile
/android/app/release

45
.metadata Normal file
View File

@ -0,0 +1,45 @@
# This file tracks properties of this Flutter project.
# Used by Flutter tool to assess capabilities and perform upgrades etc.
#
# This file should be version controlled and should not be manually edited.
version:
revision: "db50e20168db8fee486b9abf32fc912de3bc5b6a"
channel: "stable"
project_type: app
# Tracks metadata for the flutter migrate command
migration:
platforms:
- platform: root
create_revision: db50e20168db8fee486b9abf32fc912de3bc5b6a
base_revision: db50e20168db8fee486b9abf32fc912de3bc5b6a
- platform: android
create_revision: db50e20168db8fee486b9abf32fc912de3bc5b6a
base_revision: db50e20168db8fee486b9abf32fc912de3bc5b6a
- platform: ios
create_revision: db50e20168db8fee486b9abf32fc912de3bc5b6a
base_revision: db50e20168db8fee486b9abf32fc912de3bc5b6a
- platform: linux
create_revision: db50e20168db8fee486b9abf32fc912de3bc5b6a
base_revision: db50e20168db8fee486b9abf32fc912de3bc5b6a
- platform: macos
create_revision: db50e20168db8fee486b9abf32fc912de3bc5b6a
base_revision: db50e20168db8fee486b9abf32fc912de3bc5b6a
- platform: web
create_revision: db50e20168db8fee486b9abf32fc912de3bc5b6a
base_revision: db50e20168db8fee486b9abf32fc912de3bc5b6a
- platform: windows
create_revision: db50e20168db8fee486b9abf32fc912de3bc5b6a
base_revision: db50e20168db8fee486b9abf32fc912de3bc5b6a
# User provided section
# List of Local paths (relative to this file) that should be
# ignored by the migrate tool.
#
# Files that are not part of the templates will be ignored by default.
unmanaged_files:
- 'lib/main.dart'
- 'ios/Runner.xcodeproj/project.pbxproj'

17
README.md Normal file
View File

@ -0,0 +1,17 @@
# mobile_team
A new Flutter project.
## Getting Started
This project is a starting point for a Flutter application.
A few resources to get you started if this is your first Flutter project:
- [Learn Flutter](https://docs.flutter.dev/get-started/learn-flutter)
- [Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
- [Flutter learning resources](https://docs.flutter.dev/reference/learning-resources)
For help getting started with Flutter development, view the
[online documentation](https://docs.flutter.dev/), which offers tutorials,
samples, guidance on mobile development, and a full API reference.

28
analysis_options.yaml Normal file
View File

@ -0,0 +1,28 @@
# This file configures the analyzer, which statically analyzes Dart code to
# check for errors, warnings, and lints.
#
# The issues identified by the analyzer are surfaced in the UI of Dart-enabled
# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
# invoked from the command line by running `flutter analyze`.
# The following line activates a set of recommended lints for Flutter apps,
# packages, and plugins designed to encourage good coding practices.
include: package:flutter_lints/flutter.yaml
linter:
# The lint rules applied to this project can be customized in the
# section below to disable rules from the `package:flutter_lints/flutter.yaml`
# included above or to enable additional rules. A list of all available lints
# and their documentation is published at https://dart.dev/lints.
#
# Instead of disabling a lint rule for the entire project in the
# section below, it can also be suppressed for a single line of code
# or a specific dart file by using the `// ignore: name_of_lint` and
# `// ignore_for_file: name_of_lint` syntax on the line or in the file
# producing the lint.
rules:
# avoid_print: false # Uncomment to disable the `avoid_print` rule
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
# Additional information about this file can be found at
# https://dart.dev/guides/language/analysis-options

14
android/.gitignore vendored Normal file
View File

@ -0,0 +1,14 @@
gradle-wrapper.jar
/.gradle
/captures/
/gradlew
/gradlew.bat
/local.properties
GeneratedPluginRegistrant.java
.cxx/
# Remember to never publicly share your keystore.
# See https://flutter.dev/to/reference-keystore
key.properties
**/*.keystore
**/*.jks

View File

@ -0,0 +1,47 @@
plugins {
id("com.android.application")
// START: FlutterFire Configuration
id("com.google.gms.google-services")
// END: FlutterFire Configuration
id("kotlin-android")
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
id("dev.flutter.flutter-gradle-plugin")
}
android {
namespace = "com.example.mobile_team"
compileSdk = flutter.compileSdkVersion
ndkVersion = flutter.ndkVersion
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_17.toString()
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId = "com.example.mobile_team"
// You can update the following values to match your application needs.
// For more information, see: https://flutter.dev/to/review-gradle-config.
minSdk = flutter.minSdkVersion
targetSdk = flutter.targetSdkVersion
versionCode = flutter.versionCode
versionName = flutter.versionName
}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig = signingConfigs.getByName("debug")
}
}
}
flutter {
source = "../.."
}

View File

@ -0,0 +1,29 @@
{
"project_info": {
"project_number": "762583493199",
"project_id": "mobile-team-57386",
"storage_bucket": "mobile-team-57386.firebasestorage.app"
},
"client": [
{
"client_info": {
"mobilesdk_app_id": "1:762583493199:android:c97a0f9d070594f59ed83a",
"android_client_info": {
"package_name": "com.example.mobile_team"
}
},
"oauth_client": [],
"api_key": [
{
"current_key": "AIzaSyC1bN-FszTsSck6C7n9W9XFnn4oYzqG4io"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": []
}
}
}
],
"configuration_version": "1"
}

View File

@ -0,0 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<!-- The INTERNET permission is required for development. Specifically,
the Flutter tool needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>

View File

@ -0,0 +1,45 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:label="mobile_team"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"
android:exported="true"
android:launchMode="singleTop"
android:taskAffinity=""
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<!-- Specifies an Android theme to apply to this Activity as soon as
the Android process has started. This theme is visible to the user
while the Flutter UI initializes. After that, this theme continues
to determine the Window background behind the Flutter UI. -->
<meta-data
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
/>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<!-- Don't delete the meta-data below.
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
<meta-data
android:name="flutterEmbedding"
android:value="2" />
</application>
<!-- Required to query activities that can process text, see:
https://developer.android.com/training/package-visibility and
https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT.
In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. -->
<queries>
<intent>
<action android:name="android.intent.action.PROCESS_TEXT"/>
<data android:mimeType="text/plain"/>
</intent>
</queries>
</manifest>

View File

@ -0,0 +1,5 @@
package com.example.mobile_team
import io.flutter.embedding.android.FlutterActivity
class MainActivity : FlutterActivity()

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Modify this file to customize your launch splash screen -->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="?android:colorBackground" />
<!-- You can insert your own image assets here -->
<!-- <item>
<bitmap
android:gravity="center"
android:src="@mipmap/launch_image" />
</item> -->
</layer-list>

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Modify this file to customize your launch splash screen -->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@android:color/white" />
<!-- You can insert your own image assets here -->
<!-- <item>
<bitmap
android:gravity="center"
android:src="@mipmap/launch_image" />
</item> -->
</layer-list>

Binary file not shown.

After

Width:  |  Height:  |  Size: 544 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 442 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 721 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on -->
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
<!-- Show a splash screen on the activity. Automatically removed when
the Flutter engine draws its first frame -->
<item name="android:windowBackground">@drawable/launch_background</item>
</style>
<!-- Theme applied to the Android Window as soon as the process has started.
This theme determines the color of the Android Window while your
Flutter UI initializes, as well as behind your Flutter UI while its
running.
This Theme is only used starting with V2 of Flutter's Android embedding. -->
<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
<item name="android:windowBackground">?android:colorBackground</item>
</style>
</resources>

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
<!-- Show a splash screen on the activity. Automatically removed when
the Flutter engine draws its first frame -->
<item name="android:windowBackground">@drawable/launch_background</item>
</style>
<!-- Theme applied to the Android Window as soon as the process has started.
This theme determines the color of the Android Window while your
Flutter UI initializes, as well as behind your Flutter UI while its
running.
This Theme is only used starting with V2 of Flutter's Android embedding. -->
<style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar">
<item name="android:windowBackground">?android:colorBackground</item>
</style>
</resources>

View File

@ -0,0 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<!-- The INTERNET permission is required for development. Specifically,
the Flutter tool needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>

24
android/build.gradle.kts Normal file
View File

@ -0,0 +1,24 @@
allprojects {
repositories {
google()
mavenCentral()
}
}
val newBuildDir: Directory =
rootProject.layout.buildDirectory
.dir("../../build")
.get()
rootProject.layout.buildDirectory.value(newBuildDir)
subprojects {
val newSubprojectBuildDir: Directory = newBuildDir.dir(project.name)
project.layout.buildDirectory.value(newSubprojectBuildDir)
}
subprojects {
project.evaluationDependsOn(":app")
}
tasks.register<Delete>("clean") {
delete(rootProject.layout.buildDirectory)
}

View File

@ -0,0 +1,2 @@
org.gradle.jvmargs=-Xmx8G -XX:MaxMetaspaceSize=4G -XX:ReservedCodeCacheSize=512m -XX:+HeapDumpOnOutOfMemoryError
android.useAndroidX=true

View File

@ -0,0 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-all.zip

View File

@ -0,0 +1,29 @@
pluginManagement {
val flutterSdkPath =
run {
val properties = java.util.Properties()
file("local.properties").inputStream().use { properties.load(it) }
val flutterSdkPath = properties.getProperty("flutter.sdk")
require(flutterSdkPath != null) { "flutter.sdk not set in local.properties" }
flutterSdkPath
}
includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
plugins {
id("dev.flutter.flutter-plugin-loader") version "1.0.0"
id("com.android.application") version "8.11.1" apply false
// START: FlutterFire Configuration
id("com.google.gms.google-services") version("4.3.15") apply false
// END: FlutterFire Configuration
id("org.jetbrains.kotlin.android") version "2.2.20" apply false
}
include(":app")

1
firebase.json Normal file
View File

@ -0,0 +1 @@
{"flutter":{"platforms":{"android":{"default":{"projectId":"mobile-team-57386","appId":"1:762583493199:android:c97a0f9d070594f59ed83a","fileOutput":"android/app/google-services.json"}},"dart":{"lib/firebase_options.dart":{"projectId":"mobile-team-57386","configurations":{"android":"1:762583493199:android:c97a0f9d070594f59ed83a","ios":"1:762583493199:ios:7df8be813f3722a29ed83a","macos":"1:762583493199:ios:7df8be813f3722a29ed83a","web":"1:762583493199:web:de60b94e42c221c39ed83a","windows":"1:762583493199:web:c57e8c755b7210ef9ed83a"}}}}}}

34
ios/.gitignore vendored Normal file
View File

@ -0,0 +1,34 @@
**/dgph
*.mode1v3
*.mode2v3
*.moved-aside
*.pbxuser
*.perspectivev3
**/*sync/
.sconsign.dblite
.tags*
**/.vagrant/
**/DerivedData/
Icon?
**/Pods/
**/.symlinks/
profile
xcuserdata
**/.generated/
Flutter/App.framework
Flutter/Flutter.framework
Flutter/Flutter.podspec
Flutter/Generated.xcconfig
Flutter/ephemeral/
Flutter/app.flx
Flutter/app.zip
Flutter/flutter_assets/
Flutter/flutter_export_environment.sh
ServiceDefinitions.json
Runner/GeneratedPluginRegistrant.*
# Exceptions to above rules.
!default.mode1v3
!default.mode2v3
!default.pbxuser
!default.perspectivev3

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>App</string>
<key>CFBundleIdentifier</key>
<string>io.flutter.flutter.app</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>App</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
</dict>
</plist>

View File

@ -0,0 +1 @@
#include "Generated.xcconfig"

View File

@ -0,0 +1 @@
#include "Generated.xcconfig"

View File

@ -0,0 +1,620 @@
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 54;
objects = {
/* Begin PBXBuildFile section */
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
7884E8682EC3CC0700C636F2 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7884E8672EC3CC0400C636F2 /* SceneDelegate.swift */; };
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 97C146E61CF9000F007C117D /* Project object */;
proxyType = 1;
remoteGlobalIDString = 97C146ED1CF9000F007C117D;
remoteInfo = Runner;
};
/* End PBXContainerItemProxy section */
/* Begin PBXCopyFilesBuildPhase section */
9705A1C41CF9048500538489 /* Embed Frameworks */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 10;
files = (
);
name = "Embed Frameworks";
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; };
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = "<group>"; };
331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; };
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
7884E8672EC3CC0400C636F2 /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = "<group>"; };
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; };
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; };
97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
97C146EB1CF9000F007C117D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
331C8082294A63A400263BE5 /* RunnerTests */ = {
isa = PBXGroup;
children = (
331C807B294A618700263BE5 /* RunnerTests.swift */,
);
path = RunnerTests;
sourceTree = "<group>";
};
9740EEB11CF90186004384FC /* Flutter */ = {
isa = PBXGroup;
children = (
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
9740EEB21CF90195004384FC /* Debug.xcconfig */,
7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
9740EEB31CF90195004384FC /* Generated.xcconfig */,
);
name = Flutter;
sourceTree = "<group>";
};
97C146E51CF9000F007C117D = {
isa = PBXGroup;
children = (
9740EEB11CF90186004384FC /* Flutter */,
97C146F01CF9000F007C117D /* Runner */,
97C146EF1CF9000F007C117D /* Products */,
331C8082294A63A400263BE5 /* RunnerTests */,
);
sourceTree = "<group>";
};
97C146EF1CF9000F007C117D /* Products */ = {
isa = PBXGroup;
children = (
97C146EE1CF9000F007C117D /* Runner.app */,
331C8081294A63A400263BE5 /* RunnerTests.xctest */,
);
name = Products;
sourceTree = "<group>";
};
97C146F01CF9000F007C117D /* Runner */ = {
isa = PBXGroup;
children = (
97C146FA1CF9000F007C117D /* Main.storyboard */,
97C146FD1CF9000F007C117D /* Assets.xcassets */,
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,
97C147021CF9000F007C117D /* Info.plist */,
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
74858FAE1ED2DC5600515810 /* AppDelegate.swift */,
7884E8672EC3CC0400C636F2 /* SceneDelegate.swift */,
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */,
);
path = Runner;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
331C8080294A63A400263BE5 /* RunnerTests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
buildPhases = (
331C807D294A63A400263BE5 /* Sources */,
331C807F294A63A400263BE5 /* Resources */,
);
buildRules = (
);
dependencies = (
331C8086294A63A400263BE5 /* PBXTargetDependency */,
);
name = RunnerTests;
productName = RunnerTests;
productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
97C146ED1CF9000F007C117D /* Runner */ = {
isa = PBXNativeTarget;
buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
buildPhases = (
9740EEB61CF901F6004384FC /* Run Script */,
97C146EA1CF9000F007C117D /* Sources */,
97C146EB1CF9000F007C117D /* Frameworks */,
97C146EC1CF9000F007C117D /* Resources */,
9705A1C41CF9048500538489 /* Embed Frameworks */,
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
);
buildRules = (
);
dependencies = (
);
name = Runner;
productName = Runner;
productReference = 97C146EE1CF9000F007C117D /* Runner.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
97C146E61CF9000F007C117D /* Project object */ = {
isa = PBXProject;
attributes = {
BuildIndependentTargetsInParallel = YES;
LastUpgradeCheck = 1510;
ORGANIZATIONNAME = "";
TargetAttributes = {
331C8080294A63A400263BE5 = {
CreatedOnToolsVersion = 14.0;
TestTargetID = 97C146ED1CF9000F007C117D;
};
97C146ED1CF9000F007C117D = {
CreatedOnToolsVersion = 7.3.1;
LastSwiftMigration = 1100;
};
};
};
buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */;
compatibilityVersion = "Xcode 9.3";
developmentRegion = en;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = 97C146E51CF9000F007C117D;
productRefGroup = 97C146EF1CF9000F007C117D /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
97C146ED1CF9000F007C117D /* Runner */,
331C8080294A63A400263BE5 /* RunnerTests */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
331C807F294A63A400263BE5 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
97C146EC1CF9000F007C117D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
isa = PBXShellScriptBuildPhase;
alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
);
name = "Thin Binary";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
};
9740EEB61CF901F6004384FC /* Run Script */ = {
isa = PBXShellScriptBuildPhase;
alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Run Script";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
};
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
331C807D294A63A400263BE5 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
97C146EA1CF9000F007C117D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */,
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,
7884E8682EC3CC0700C636F2 /* SceneDelegate.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
331C8086294A63A400263BE5 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 97C146ED1CF9000F007C117D /* Runner */;
targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXVariantGroup section */
97C146FA1CF9000F007C117D /* Main.storyboard */ = {
isa = PBXVariantGroup;
children = (
97C146FB1CF9000F007C117D /* Base */,
);
name = Main.storyboard;
sourceTree = "<group>";
};
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {
isa = PBXVariantGroup;
children = (
97C147001CF9000F007C117D /* Base */,
);
name = LaunchScreen.storyboard;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
249021D3217E4FDB00AE95B9 /* Profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_USER_SCRIPT_SANDBOXING = NO;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SUPPORTED_PLATFORMS = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
name = Profile;
};
249021D4217E4FDB00AE95B9 /* Profile */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = com.example.mobileTeam;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;
VERSIONING_SYSTEM = "apple-generic";
};
name = Profile;
};
331C8088294A63A400263BE5 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
GENERATE_INFOPLIST_FILE = YES;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.example.mobileTeam.RunnerTests;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
};
name = Debug;
};
331C8089294A63A400263BE5 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
GENERATE_INFOPLIST_FILE = YES;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.example.mobileTeam.RunnerTests;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
};
name = Release;
};
331C808A294A63A400263BE5 /* Profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
GENERATE_INFOPLIST_FILE = YES;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.example.mobileTeam.RunnerTests;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
};
name = Profile;
};
97C147031CF9000F007C117D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
ENABLE_USER_SCRIPT_SANDBOXING = NO;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
97C147041CF9000F007C117D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_USER_SCRIPT_SANDBOXING = NO;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SUPPORTED_PLATFORMS = iphoneos;
SWIFT_COMPILATION_MODE = wholemodule;
SWIFT_OPTIMIZATION_LEVEL = "-O";
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
name = Release;
};
97C147061CF9000F007C117D /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = com.example.mobileTeam;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;
VERSIONING_SYSTEM = "apple-generic";
};
name = Debug;
};
97C147071CF9000F007C117D /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = com.example.mobileTeam;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;
VERSIONING_SYSTEM = "apple-generic";
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
331C8088294A63A400263BE5 /* Debug */,
331C8089294A63A400263BE5 /* Release */,
331C808A294A63A400263BE5 /* Profile */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = {
isa = XCConfigurationList;
buildConfigurations = (
97C147031CF9000F007C117D /* Debug */,
97C147041CF9000F007C117D /* Release */,
249021D3217E4FDB00AE95B9 /* Profile */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = {
isa = XCConfigurationList;
buildConfigurations = (
97C147061CF9000F007C117D /* Debug */,
97C147071CF9000F007C117D /* Release */,
249021D4217E4FDB00AE95B9 /* Profile */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 97C146E61CF9000F007C117D /* Project object */;
}

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
version = "1.0">
<FileRef
location = "self:">
</FileRef>
</Workspace>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>PreviewsEnabled</key>
<false/>
</dict>
</plist>

View File

@ -0,0 +1,101 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1510"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
customLLDBInitFile = "$(SRCROOT)/Flutter/ephemeral/flutter_lldbinit"
shouldUseLaunchSchemeArgsEnv = "YES">
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</MacroExpansion>
<Testables>
<TestableReference
skipped = "NO"
parallelizable = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "331C8080294A63A400263BE5"
BuildableName = "RunnerTests.xctest"
BlueprintName = "RunnerTests"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</TestableReference>
</Testables>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
customLLDBInitFile = "$(SRCROOT)/Flutter/ephemeral/flutter_lldbinit"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
enableGPUValidationMode = "1"
allowLocationSimulation = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</LaunchAction>
<ProfileAction
buildConfiguration = "Profile"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
version = "1.0">
<FileRef
location = "group:Runner.xcodeproj">
</FileRef>
</Workspace>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>PreviewsEnabled</key>
<false/>
</dict>
</plist>

View File

@ -0,0 +1,16 @@
import Flutter
import UIKit
@main
@objc class AppDelegate: FlutterAppDelegate, FlutterImplicitEngineDelegate {
override func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
func didInitializeImplicitFlutterEngine(_ engineBridge: FlutterImplicitEngineBridge) {
GeneratedPluginRegistrant.register(with: engineBridge.pluginRegistry)
}
}

View File

@ -0,0 +1,122 @@
{
"images" : [
{
"size" : "20x20",
"idiom" : "iphone",
"filename" : "Icon-App-20x20@2x.png",
"scale" : "2x"
},
{
"size" : "20x20",
"idiom" : "iphone",
"filename" : "Icon-App-20x20@3x.png",
"scale" : "3x"
},
{
"size" : "29x29",
"idiom" : "iphone",
"filename" : "Icon-App-29x29@1x.png",
"scale" : "1x"
},
{
"size" : "29x29",
"idiom" : "iphone",
"filename" : "Icon-App-29x29@2x.png",
"scale" : "2x"
},
{
"size" : "29x29",
"idiom" : "iphone",
"filename" : "Icon-App-29x29@3x.png",
"scale" : "3x"
},
{
"size" : "40x40",
"idiom" : "iphone",
"filename" : "Icon-App-40x40@2x.png",
"scale" : "2x"
},
{
"size" : "40x40",
"idiom" : "iphone",
"filename" : "Icon-App-40x40@3x.png",
"scale" : "3x"
},
{
"size" : "60x60",
"idiom" : "iphone",
"filename" : "Icon-App-60x60@2x.png",
"scale" : "2x"
},
{
"size" : "60x60",
"idiom" : "iphone",
"filename" : "Icon-App-60x60@3x.png",
"scale" : "3x"
},
{
"size" : "20x20",
"idiom" : "ipad",
"filename" : "Icon-App-20x20@1x.png",
"scale" : "1x"
},
{
"size" : "20x20",
"idiom" : "ipad",
"filename" : "Icon-App-20x20@2x.png",
"scale" : "2x"
},
{
"size" : "29x29",
"idiom" : "ipad",
"filename" : "Icon-App-29x29@1x.png",
"scale" : "1x"
},
{
"size" : "29x29",
"idiom" : "ipad",
"filename" : "Icon-App-29x29@2x.png",
"scale" : "2x"
},
{
"size" : "40x40",
"idiom" : "ipad",
"filename" : "Icon-App-40x40@1x.png",
"scale" : "1x"
},
{
"size" : "40x40",
"idiom" : "ipad",
"filename" : "Icon-App-40x40@2x.png",
"scale" : "2x"
},
{
"size" : "76x76",
"idiom" : "ipad",
"filename" : "Icon-App-76x76@1x.png",
"scale" : "1x"
},
{
"size" : "76x76",
"idiom" : "ipad",
"filename" : "Icon-App-76x76@2x.png",
"scale" : "2x"
},
{
"size" : "83.5x83.5",
"idiom" : "ipad",
"filename" : "Icon-App-83.5x83.5@2x.png",
"scale" : "2x"
},
{
"size" : "1024x1024",
"idiom" : "ios-marketing",
"filename" : "Icon-App-1024x1024@1x.png",
"scale" : "1x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 295 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 406 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 450 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 282 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 462 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 704 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 406 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 586 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 862 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 862 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 762 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,23 @@
{
"images" : [
{
"idiom" : "universal",
"filename" : "LaunchImage.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "LaunchImage@2x.png",
"scale" : "2x"
},
{
"idiom" : "universal",
"filename" : "LaunchImage@3x.png",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 B

View File

@ -0,0 +1,5 @@
# Launch Screen Assets
You can customize the launch screen with your own desired assets by replacing the image files in this directory.
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.

View File

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="12121" systemVersion="16G29" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="12089"/>
</dependencies>
<scenes>
<!--View Controller-->
<scene sceneID="EHf-IW-A2E">
<objects>
<viewController id="01J-lp-oVM" sceneMemberID="viewController">
<layoutGuides>
<viewControllerLayoutGuide type="top" id="Ydg-fD-yQy"/>
<viewControllerLayoutGuide type="bottom" id="xbc-2k-c8Z"/>
</layoutGuides>
<view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" image="LaunchImage" translatesAutoresizingMaskIntoConstraints="NO" id="YRO-k0-Ey4">
</imageView>
</subviews>
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<constraints>
<constraint firstItem="YRO-k0-Ey4" firstAttribute="centerX" secondItem="Ze5-6b-2t3" secondAttribute="centerX" id="1a2-6s-vTC"/>
<constraint firstItem="YRO-k0-Ey4" firstAttribute="centerY" secondItem="Ze5-6b-2t3" secondAttribute="centerY" id="4X2-HB-R7a"/>
</constraints>
</view>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
</objects>
<point key="canvasLocation" x="53" y="375"/>
</scene>
</scenes>
<resources>
<image name="LaunchImage" width="168" height="185"/>
</resources>
</document>

View File

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="10117" systemVersion="15F34" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" initialViewController="BYZ-38-t0r">
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="10085"/>
</dependencies>
<scenes>
<!--Flutter View Controller-->
<scene sceneID="tne-QT-ifu">
<objects>
<viewController id="BYZ-38-t0r" customClass="FlutterViewController" sceneMemberID="viewController">
<layoutGuides>
<viewControllerLayoutGuide type="top" id="y3c-jy-aDJ"/>
<viewControllerLayoutGuide type="bottom" id="wfy-db-euE"/>
</layoutGuides>
<view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC">
<rect key="frame" x="0.0" y="0.0" width="600" height="600"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
</view>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/>
</objects>
</scene>
</scenes>
</document>

70
ios/Runner/Info.plist Normal file
View File

@ -0,0 +1,70 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CADisableMinimumFrameDurationOnPhone</key>
<true/>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDisplayName</key>
<string>Mobile Team</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>mobile_team</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>$(FLUTTER_BUILD_NAME)</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(FLUTTER_BUILD_NUMBER)</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UIApplicationSceneManifest</key>
<dict>
<key>UIApplicationSupportsMultipleScenes</key>
<false/>
<key>UISceneConfigurations</key>
<dict>
<key>UIWindowSceneSessionRoleApplication</key>
<array>
<dict>
<key>UISceneClassName</key>
<string>UIWindowScene</string>
<key>UISceneConfigurationName</key>
<string>flutter</string>
<key>UISceneDelegateClassName</key>
<string>$(PRODUCT_MODULE_NAME).SceneDelegate</string>
<key>UISceneStoryboardFile</key>
<string>Main</string>
</dict>
</array>
</dict>
</dict>
<key>UIApplicationSupportsIndirectInputEvents</key>
<true/>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIMainStoryboardFile</key>
<string>Main</string>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
</dict>
</plist>

View File

@ -0,0 +1 @@
#import "GeneratedPluginRegistrant.h"

View File

@ -0,0 +1,6 @@
import Flutter
import UIKit
class SceneDelegate: FlutterSceneDelegate {
}

View File

@ -0,0 +1,12 @@
import Flutter
import UIKit
import XCTest
class RunnerTests: XCTestCase {
func testExample() {
// If you add code to the Runner application, consider adding tests here.
// See https://developer.apple.com/documentation/xctest for more information about using XCTest.
}
}

88
lib/firebase_options.dart Normal file
View File

@ -0,0 +1,88 @@
// File generated by FlutterFire CLI.
// ignore_for_file: type=lint
import 'package:firebase_core/firebase_core.dart' show FirebaseOptions;
import 'package:flutter/foundation.dart'
show defaultTargetPlatform, kIsWeb, TargetPlatform;
/// Default [FirebaseOptions] for use with your Firebase apps.
///
/// Example:
/// ```dart
/// import 'firebase_options.dart';
/// // ...
/// await Firebase.initializeApp(
/// options: DefaultFirebaseOptions.currentPlatform,
/// );
/// ```
class DefaultFirebaseOptions {
static FirebaseOptions get currentPlatform {
if (kIsWeb) {
return web;
}
switch (defaultTargetPlatform) {
case TargetPlatform.android:
return android;
case TargetPlatform.iOS:
return ios;
case TargetPlatform.macOS:
return macos;
case TargetPlatform.windows:
return windows;
case TargetPlatform.linux:
throw UnsupportedError(
'DefaultFirebaseOptions have not been configured for linux - '
'you can reconfigure this by running the FlutterFire CLI again.',
);
default:
throw UnsupportedError(
'DefaultFirebaseOptions are not supported for this platform.',
);
}
}
static const FirebaseOptions web = FirebaseOptions(
apiKey: 'AIzaSyA7btPSkb67UCL-FESmGoTW8AdJkMcMpJk',
appId: '1:762583493199:web:de60b94e42c221c39ed83a',
messagingSenderId: '762583493199',
projectId: 'mobile-team-57386',
authDomain: 'mobile-team-57386.firebaseapp.com',
storageBucket: 'mobile-team-57386.firebasestorage.app',
measurementId: 'G-LM6L67V7QB',
);
static const FirebaseOptions android = FirebaseOptions(
apiKey: 'AIzaSyC1bN-FszTsSck6C7n9W9XFnn4oYzqG4io',
appId: '1:762583493199:android:c97a0f9d070594f59ed83a',
messagingSenderId: '762583493199',
projectId: 'mobile-team-57386',
storageBucket: 'mobile-team-57386.firebasestorage.app',
);
static const FirebaseOptions ios = FirebaseOptions(
apiKey: 'AIzaSyBtD0-rHirJj_3GEr2K34xgpv65q32JfDk',
appId: '1:762583493199:ios:7df8be813f3722a29ed83a',
messagingSenderId: '762583493199',
projectId: 'mobile-team-57386',
storageBucket: 'mobile-team-57386.firebasestorage.app',
iosBundleId: 'com.example.mobileTeam',
);
static const FirebaseOptions macos = FirebaseOptions(
apiKey: 'AIzaSyBtD0-rHirJj_3GEr2K34xgpv65q32JfDk',
appId: '1:762583493199:ios:7df8be813f3722a29ed83a',
messagingSenderId: '762583493199',
projectId: 'mobile-team-57386',
storageBucket: 'mobile-team-57386.firebasestorage.app',
iosBundleId: 'com.example.mobileTeam',
);
static const FirebaseOptions windows = FirebaseOptions(
apiKey: 'AIzaSyA7btPSkb67UCL-FESmGoTW8AdJkMcMpJk',
appId: '1:762583493199:web:c57e8c755b7210ef9ed83a',
messagingSenderId: '762583493199',
projectId: 'mobile-team-57386',
authDomain: 'mobile-team-57386.firebaseapp.com',
storageBucket: 'mobile-team-57386.firebasestorage.app',
measurementId: 'G-W5B2FF6888',
);
}

116
lib/main.dart Normal file
View File

@ -0,0 +1,116 @@
import 'package:firebase_core/firebase_core.dart';
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:provider/provider.dart';
import 'providers/auth_provider.dart';
import 'screens/login_screen.dart';
import 'screens/home_screen.dart';
import 'services/auth_service.dart';
import 'services/project_service.dart';
import 'services/task_log_service.dart';
import 'services/report_service.dart';
import 'firebase_options.dart';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
try {
await Firebase.initializeApp(
options: DefaultFirebaseOptions.currentPlatform,
);
} catch (e) {
debugPrint("Firebase not initialized: $e");
}
runApp(
MultiProvider(
providers: [
ChangeNotifierProvider(create: (_) => AuthProvider()),
Provider(create: (_) => AuthService()),
Provider(create: (_) => ProjectService()),
Provider(create: (_) => TaskLogService()),
Provider(create: (_) => ReportService()),
],
child: const MyApp(),
),
);
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Antigravity Logs',
debugShowCheckedModeBanner: false,
theme: ThemeData(
useMaterial3: true,
colorScheme: ColorScheme.fromSeed(
seedColor: const Color(0xFF6366F1), // Modern Indigo
primary: const Color(0xFF6366F1),
secondary: const Color(0xFFEC4899), // Pink accent
surface: Colors.white,
background: const Color(0xFFF8FAFC), // Slight grayish background
),
textTheme: GoogleFonts.outfitTextTheme(),
appBarTheme: AppBarTheme(
centerTitle: true,
elevation: 0,
backgroundColor: Colors.transparent,
surfaceTintColor: Colors.transparent,
titleTextStyle: GoogleFonts.outfit(
color: const Color(0xFF1E293B),
fontSize: 20,
fontWeight: FontWeight.bold,
),
iconTheme: const IconThemeData(color: Color(0xFF64748B)),
),
elevatedButtonTheme: ElevatedButtonThemeData(
style: ElevatedButton.styleFrom(
backgroundColor: const Color(0xFF6366F1),
foregroundColor: Colors.white,
minimumSize: const Size(double.infinity, 56),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(16),
),
elevation: 0,
textStyle: const TextStyle(fontWeight: FontWeight.bold, fontSize: 16),
),
),
inputDecorationTheme: InputDecorationTheme(
filled: true,
fillColor: Colors.white,
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(16),
borderSide: BorderSide(color: Colors.grey.shade200),
),
enabledBorder: OutlineInputBorder(
borderRadius: BorderRadius.circular(16),
borderSide: BorderSide(color: Colors.grey.shade200),
),
focusedBorder: OutlineInputBorder(
borderRadius: BorderRadius.circular(16),
borderSide: const BorderSide(color: Color(0xFF6366F1), width: 2),
),
contentPadding: const EdgeInsets.all(18),
),
cardTheme: CardThemeData(
elevation: 0,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(20),
side: BorderSide(color: Colors.grey.shade100),
),
color: Colors.white,
),
),
home: Consumer<AuthProvider>(
builder: (context, auth, _) {
return auth.isAuthenticated
? const HomeScreen()
: const LoginScreen();
},
),
);
}
}

View File

@ -0,0 +1,22 @@
class BranchModel {
final String id;
final String name;
BranchModel({
required this.id,
required this.name,
});
factory BranchModel.fromMap(String id, Map<String, dynamic> data) {
return BranchModel(
id: id,
name: data['name'] ?? '',
);
}
Map<String, dynamic> toMap() {
return {
'name': name,
};
}
}

View File

@ -0,0 +1,38 @@
import 'package:cloud_firestore/cloud_firestore.dart';
class ProjectDocModel {
final String id;
final String label;
final String url;
final String type; // pdf | link
final DateTime uploadedAt;
ProjectDocModel({
required this.id,
required this.label,
required this.url,
required this.type,
required this.uploadedAt,
});
factory ProjectDocModel.fromMap(String id, Map<String, dynamic> data) {
return ProjectDocModel(
id: id,
label: data['label'] ?? '',
url: data['url'] ?? '',
type: data['type'] ?? 'link',
uploadedAt: (data['uploadedAt'] is Timestamp)
? (data['uploadedAt'] as Timestamp).toDate()
: DateTime.now(),
);
}
Map<String, dynamic> toMap() {
return {
'label': label,
'url': url,
'type': type,
'uploadedAt': Timestamp.fromDate(uploadedAt),
};
}
}

View File

@ -0,0 +1,74 @@
import 'package:cloud_firestore/cloud_firestore.dart';
class ProjectModel {
final String id;
final String name;
final String gitUrl;
final String? apiDocUrl;
final String description;
final List<String> flavors;
final DateTime createdAt;
// Dynamic enrichment fields (populated from logs)
final DateTime? lastUpdateDate;
final String? lastWorkedBy;
ProjectModel({
required this.id,
required this.name,
required this.gitUrl,
this.apiDocUrl,
required this.description,
required this.flavors,
required this.createdAt,
this.lastUpdateDate,
this.lastWorkedBy,
});
factory ProjectModel.fromMap(String id, Map<String, dynamic> data) {
return ProjectModel(
id: id,
name: data['name'] ?? '',
gitUrl: data['gitUrl'] ?? '',
apiDocUrl: data['apiDocUrl'],
description: data['description'] ?? '',
flavors: List<String>.from(data['flavors'] ?? []),
createdAt: (data['createdAt'] is Timestamp)
? (data['createdAt'] as Timestamp).toDate()
: DateTime.now(),
lastUpdateDate: (data['lastUpdateDate'] is Timestamp)
? (data['lastUpdateDate'] as Timestamp).toDate()
: null,
lastWorkedBy: data['lastWorkedBy'],
);
}
Map<String, dynamic> toMap() {
return {
'name': name,
'gitUrl': gitUrl,
'apiDocUrl': apiDocUrl,
'description': description,
'flavors': flavors,
'createdAt': Timestamp.fromDate(createdAt),
// Note: lastUpdateDate and lastWorkedBy typically managed through app logic/logs
};
}
ProjectModel copyWith({
DateTime? lastUpdateDate,
String? lastWorkedBy,
}) {
return ProjectModel(
id: id,
name: name,
gitUrl: gitUrl,
apiDocUrl: apiDocUrl,
description: description,
flavors: flavors,
createdAt: createdAt,
lastUpdateDate: lastUpdateDate ?? this.lastUpdateDate,
lastWorkedBy: lastWorkedBy ?? this.lastWorkedBy,
);
}
}

View File

@ -0,0 +1,72 @@
import 'package:cloud_firestore/cloud_firestore.dart';
class TaskLogModel {
final String id;
final String userId;
final String userName;
final String projectId;
final String projectName;
final String branchId;
final String branchName;
final String? flavor;
final String moduleName;
final String status; // in_progress | done | blocked
final String remarks;
final DateTime date;
final DateTime createdAt;
TaskLogModel({
required this.id,
required this.userId,
required this.userName,
required this.projectId,
required this.projectName,
required this.branchId,
required this.branchName,
this.flavor,
required this.moduleName,
required this.status,
required this.remarks,
required this.date,
required this.createdAt,
});
factory TaskLogModel.fromMap(String id, Map<String, dynamic> data) {
return TaskLogModel(
id: id,
userId: data['userId'] ?? '',
userName: data['userName'] ?? '',
projectId: data['projectId'] ?? '',
projectName: data['projectName'] ?? '',
branchId: data['branchId'] ?? '',
branchName: data['branchName'] ?? '',
flavor: data['flavor'],
moduleName: data['moduleName'] ?? '',
status: data['status'] ?? 'in_progress',
remarks: data['remarks'] ?? '',
date: (data['date'] is Timestamp)
? (data['date'] as Timestamp).toDate()
: DateTime.now(),
createdAt: (data['createdAt'] is Timestamp)
? (data['createdAt'] as Timestamp).toDate()
: DateTime.now(),
);
}
Map<String, dynamic> toMap() {
return {
'userId': userId,
'userName': userName,
'projectId': projectId,
'projectName': projectName,
'branchId': branchId,
'branchName': branchName,
'flavor': flavor,
'moduleName': moduleName,
'status': status,
'remarks': remarks,
'date': Timestamp.fromDate(date),
'createdAt': Timestamp.fromDate(createdAt),
};
}
}

View File

@ -0,0 +1,32 @@
import 'package:cloud_firestore/cloud_firestore.dart';
class UserModel {
final String uid;
final String name;
final String email;
final DateTime createdAt;
UserModel({
required this.uid,
required this.name,
required this.email,
required this.createdAt,
});
factory UserModel.fromMap(String id, Map<String, dynamic> data) {
return UserModel(
uid: id,
name: data['name'] ?? '',
email: data['email'] ?? '',
createdAt: (data['createdAt'] as Timestamp).toDate(),
);
}
Map<String, dynamic> toMap() {
return {
'name': name,
'email': email,
'createdAt': Timestamp.fromDate(createdAt),
};
}
}

View File

@ -0,0 +1,45 @@
import 'package:flutter/material.dart';
import 'package:firebase_auth/firebase_auth.dart';
import '../models/user_model.dart';
import '../services/auth_service.dart';
class AuthProvider extends ChangeNotifier {
final AuthService _authService = AuthService();
UserModel? _user;
bool _isLoading = false;
UserModel? get user => _user;
bool get isLoading => _isLoading;
bool get isAuthenticated => _user != null;
AuthProvider() {
_authService.userStream.listen((User? firebaseUser) async {
if (firebaseUser != null) {
_user = await _authService.getUser(firebaseUser.uid);
} else {
_user = null;
}
notifyListeners();
});
}
Future<void> login(String email, String password) async {
_isLoading = true;
notifyListeners();
try {
_user = await _authService.login(email, password);
} catch (e) {
_isLoading = false;
notifyListeners();
rethrow;
}
_isLoading = false;
notifyListeners();
}
Future<void> logout() async {
await _authService.logout();
_user = null;
notifyListeners();
}
}

View File

@ -0,0 +1,140 @@
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import '../providers/auth_provider.dart';
import 'tabs/today_logs_tab.dart';
import 'tabs/projects_tab.dart';
import 'tabs/all_logs_tab.dart';
import 'tabs/reports_tab.dart';
class HomeScreen extends StatefulWidget {
const HomeScreen({super.key});
@override
State<HomeScreen> createState() => _HomeScreenState();
}
class _HomeScreenState extends State<HomeScreen> {
int _currentIndex = 0;
final List<String> _titles = ["Today's Log", "Projects", "All Team Logs", "Reports"];
final List<Widget> _tabs = [
const TodayLogsTab(),
const ProjectsTab(),
const AllLogsTab(),
const ReportsTab(),
];
@override
Widget build(BuildContext context) {
String? userName = context.watch<AuthProvider>().user?.name;
return Scaffold(
appBar: AppBar(
title: Text(_titles[_currentIndex]),
actions: [
IconButton(
onPressed: () {
context.read<AuthProvider>().logout();
},
icon: const Icon(Icons.logout),
tooltip: "Logout",
),
],
),
drawer: Drawer(
child: ListView(
padding: EdgeInsets.zero,
children: [
UserAccountsDrawerHeader(
accountName: Text(userName ?? "User"),
accountEmail: Text(context.watch<AuthProvider>().user?.email ?? ""),
currentAccountPicture: const CircleAvatar(
backgroundColor: Colors.white,
child: Icon(Icons.person, color: Colors.indigo, size: 40),
),
decoration: const BoxDecoration(
color: Colors.indigo,
),
),
ListTile(
leading: const Icon(Icons.today),
title: const Text("Today's Log"),
selected: _currentIndex == 0,
onTap: () {
setState(() => _currentIndex = 0);
Navigator.pop(context);
},
),
ListTile(
leading: const Icon(Icons.folder_shared),
title: const Text("Projects"),
selected: _currentIndex == 1,
onTap: () {
setState(() => _currentIndex = 1);
Navigator.pop(context);
},
),
ListTile(
leading: const Icon(Icons.list_alt),
title: const Text("All Logs"),
selected: _currentIndex == 2,
onTap: () {
setState(() => _currentIndex = 2);
Navigator.pop(context);
},
),
ListTile(
leading: const Icon(Icons.bar_chart),
title: const Text("Reports"),
selected: _currentIndex == 3,
onTap: () {
setState(() => _currentIndex = 3);
Navigator.pop(context);
},
),
const Divider(),
ListTile(
leading: const Icon(Icons.logout, color: Colors.red),
title: const Text("Logout", style: TextStyle(color: Colors.red)),
onTap: () {
Navigator.pop(context);
context.read<AuthProvider>().logout();
},
),
],
),
),
body: IndexedStack(
index: _currentIndex,
children: _tabs,
),
bottomNavigationBar: NavigationBar(
selectedIndex: _currentIndex,
onDestinationSelected: (index) => setState(() => _currentIndex = index),
destinations: const [
NavigationDestination(
icon: Icon(Icons.today_outlined),
selectedIcon: Icon(Icons.today),
label: 'Today',
),
NavigationDestination(
icon: Icon(Icons.folder_outlined),
selectedIcon: Icon(Icons.folder),
label: 'Projects',
),
NavigationDestination(
icon: Icon(Icons.list_alt_outlined),
selectedIcon: Icon(Icons.list_alt),
label: 'All Logs',
),
NavigationDestination(
icon: Icon(Icons.insights_outlined),
selectedIcon: Icon(Icons.insights),
label: 'Reports',
),
],
),
);
}
}

View File

@ -0,0 +1,262 @@
import 'package:flutter/material.dart';
import 'package:intl/intl.dart';
import 'package:provider/provider.dart';
import '../models/task_log_model.dart';
import '../models/project_model.dart';
import '../models/branch_model.dart';
import '../services/project_service.dart';
import '../services/task_log_service.dart';
import '../providers/auth_provider.dart';
class LogFormScreen extends StatefulWidget {
final TaskLogModel? log;
const LogFormScreen({super.key, this.log});
@override
State<LogFormScreen> createState() => _LogFormScreenState();
}
class _LogFormScreenState extends State<LogFormScreen> {
final _formKey = GlobalKey<FormState>();
late DateTime _selectedDate;
ProjectModel? _selectedProject;
BranchModel? _selectedBranch;
String? _selectedFlavor;
String _status = 'in_progress';
final _moduleController = TextEditingController();
final _remarksController = TextEditingController();
List<ProjectModel> _projects = [];
List<BranchModel> _branches = [];
bool _isLoading = false;
bool _isInitializing = true;
@override
void initState() {
super.initState();
_selectedDate = widget.log?.date ?? DateTime.now();
_status = widget.log?.status ?? 'in_progress';
_moduleController.text = widget.log?.moduleName ?? '';
_remarksController.text = widget.log?.remarks ?? '';
_selectedFlavor = widget.log?.flavor;
_loadProjects();
}
Future<void> _loadProjects() async {
final stream = context.read<ProjectService>().getProjects();
final list = await stream.first;
if (mounted) {
setState(() {
_projects = list;
if (widget.log != null) {
_selectedProject = _projects.any((p) => p.id == widget.log!.projectId)
? _projects.firstWhere((p) => p.id == widget.log!.projectId)
: null;
if (_selectedProject != null) {
_loadBranches(_selectedProject!.id);
}
}
_isInitializing = false;
});
}
}
Future<void> _loadBranches(String projectId) async {
final list = await context.read<ProjectService>().getBranchesOnce(projectId);
if (mounted) {
setState(() {
_branches = list;
if (widget.log != null && _selectedBranch == null) {
_selectedBranch = _branches.any((b) => b.id == widget.log!.branchId)
? _branches.firstWhere((b) => b.id == widget.log!.branchId)
: null;
} else {
_selectedBranch = null;
}
});
}
}
void _submit() async {
if (!_formKey.currentState!.validate() || _selectedProject == null || _selectedBranch == null) {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(content: Text("Please select Project and Branch"), backgroundColor: Colors.orange)
);
return;
}
setState(() => _isLoading = true);
final user = context.read<AuthProvider>().user!;
final newLog = TaskLogModel(
id: widget.log?.id ?? '',
userId: user.uid,
userName: user.name,
projectId: _selectedProject!.id,
projectName: _selectedProject!.name,
branchId: _selectedBranch!.id,
branchName: _selectedBranch!.name,
flavor: _selectedFlavor,
moduleName: _moduleController.text.trim(),
status: _status,
remarks: _remarksController.text.trim(),
date: _selectedDate,
createdAt: widget.log?.createdAt ?? DateTime.now(),
);
try {
if (widget.log == null) {
await context.read<TaskLogService>().addTaskLog(newLog);
} else {
await context.read<TaskLogService>().updateTaskLog(newLog);
}
if (mounted) Navigator.pop(context);
} catch (e) {
if (mounted) {
ScaffoldMessenger.of(context).showSnackBar(SnackBar(content: Text("Failed: $e")));
}
} finally {
if (mounted) setState(() => _isLoading = false);
}
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.log == null ? "Add Work Log" : "Edit Work Log"),
),
body: _isInitializing
? const Center(child: CircularProgressIndicator())
: SingleChildScrollView(
padding: const EdgeInsets.all(20),
child: Form(
key: _formKey,
child: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
_buildDateField(),
const SizedBox(height: 16),
_buildProjectDropdown(),
if (_selectedProject != null && _selectedProject!.flavors.isNotEmpty) ...[
const SizedBox(height: 16),
_buildFlavorDropdown(),
],
const SizedBox(height: 16),
_buildBranchDropdown(),
const SizedBox(height: 16),
TextFormField(
controller: _moduleController,
decoration: const InputDecoration(
labelText: "Module/Task Name",
hintText: "e.g., Login UI, Bug fixing",
border: OutlineInputBorder(),
),
validator: (v) => v!.isEmpty ? "Required" : null,
),
const SizedBox(height: 24),
const Text("Status", style: TextStyle(fontWeight: FontWeight.bold)),
const SizedBox(height: 8),
_buildStatusChips(),
const SizedBox(height: 24),
TextFormField(
controller: _remarksController,
maxLines: 4,
decoration: const InputDecoration(
labelText: "Remarks",
border: OutlineInputBorder(),
),
validator: (v) => v!.isEmpty ? "Required" : null,
),
const SizedBox(height: 32),
_isLoading
? const Center(child: CircularProgressIndicator())
: ElevatedButton(
onPressed: _submit,
child: Text(widget.log == null ? "SAVE LOG" : "UPDATE LOG"),
),
],
),
),
),
);
}
Widget _buildDateField() {
return ListTile(
contentPadding: EdgeInsets.zero,
title: const Text("Date of Work", style: TextStyle(fontWeight: FontWeight.bold)),
subtitle: Text(DateFormat('EEEE, dd MMM yyyy').format(_selectedDate)),
trailing: const Icon(Icons.calendar_month, color: Colors.indigo),
onTap: () async {
final date = await showDatePicker(
context: context,
initialDate: _selectedDate,
firstDate: DateTime.now().subtract(const Duration(days: 30)),
lastDate: DateTime.now(),
);
if (date != null) setState(() => _selectedDate = date);
},
);
}
Widget _buildProjectDropdown() {
return DropdownButtonFormField<ProjectModel>(
value: _selectedProject,
decoration: const InputDecoration(labelText: "Project", border: OutlineInputBorder()),
items: _projects.map((p) => DropdownMenuItem(value: p, child: Text(p.name))).toList(),
onChanged: (v) {
setState(() {
_selectedProject = v;
_selectedBranch = null;
_selectedFlavor = null;
_branches = [];
});
if (v != null) _loadBranches(v.id);
},
);
}
Widget _buildFlavorDropdown() {
return DropdownButtonFormField<String>(
value: _selectedFlavor,
decoration: const InputDecoration(labelText: "Flavor", border: OutlineInputBorder()),
items: _selectedProject!.flavors.map((f) => DropdownMenuItem(value: f, child: Text(f))).toList(),
onChanged: (v) => setState(() => _selectedFlavor = v),
validator: (v) => v == null ? "Required" : null,
);
}
Widget _buildBranchDropdown() {
return DropdownButtonFormField<BranchModel>(
value: _selectedBranch,
decoration: const InputDecoration(labelText: "Branch", border: OutlineInputBorder()),
items: _branches.map((b) => DropdownMenuItem(value: b, child: Text(b.name))).toList(),
onChanged: (v) => setState(() => _selectedBranch = v),
hint: const Text("Select Branch"),
);
}
Widget _buildStatusChips() {
return Row(
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: [
_statusChip('in_progress', 'IN PROGRESS', Colors.orange),
_statusChip('done', 'DONE', Colors.green),
_statusChip('blocked', 'BLOCKED', Colors.red),
],
);
}
Widget _statusChip(String value, String label, Color color) {
bool selected = _status == value;
return ChoiceChip(
label: Text(label, style: TextStyle(color: selected ? Colors.white : color, fontSize: 11)),
selected: selected,
selectedColor: color,
onSelected: (s) {
if (s) setState(() => _status = value);
},
);
}
}

View File

@ -0,0 +1,189 @@
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import '../providers/auth_provider.dart';
class LoginScreen extends StatefulWidget {
const LoginScreen({super.key});
@override
State<LoginScreen> createState() => _LoginScreenState();
}
class _LoginScreenState extends State<LoginScreen> {
final _emailController = TextEditingController();
final _passwordController = TextEditingController();
final _formKey = GlobalKey<FormState>();
void _login() async {
if (_formKey.currentState!.validate()) {
try {
await context.read<AuthProvider>().login(
_emailController.text.trim(),
_passwordController.text.trim(),
);
} catch (e) {
if (mounted) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text('Login failed: ${e.toString()}'),
backgroundColor: Colors.red,
behavior: SnackBarBehavior.floating,
margin: const EdgeInsets.all(20),
),
);
}
}
}
}
@override
void dispose() {
_emailController.dispose();
_passwordController.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
final bool isLoading = context.watch<AuthProvider>().isLoading;
return Scaffold(
body: Stack(
children: [
// Background Gradient
Container(
decoration: const BoxDecoration(
gradient: LinearGradient(
colors: [Color(0xFF6366F1), Color(0xFF4338CA)],
begin: Alignment.topLeft,
end: Alignment.bottomRight,
),
),
),
// Decorative circles
Positioned(
top: -100,
right: -100,
child: CircleAvatar(
radius: 150,
backgroundColor: Colors.white.withOpacity(0.1),
),
),
Positioned(
bottom: -50,
left: -50,
child: CircleAvatar(
radius: 100,
backgroundColor: Colors.white.withOpacity(0.05),
),
),
Center(
child: SingleChildScrollView(
padding: const EdgeInsets.all(28.0),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const Icon(Icons.rocket_launch_rounded, size: 72, color: Colors.white),
const SizedBox(height: 24),
const Text(
'ANTIGRAVITY',
style: TextStyle(
color: Colors.white,
fontSize: 32,
fontWeight: FontWeight.bold,
letterSpacing: 2.0,
),
),
const Text(
'TEAM COLLABORATION',
style: TextStyle(
color: Colors.white70,
fontSize: 12,
fontWeight: FontWeight.bold,
letterSpacing: 1.5,
),
),
const SizedBox(height: 48),
Container(
padding: const EdgeInsets.all(28),
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.circular(32),
boxShadow: [
BoxShadow(
color: Colors.black.withOpacity(0.1),
blurRadius: 20,
offset: const Offset(0, 10),
),
],
),
child: Form(
key: _formKey,
child: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
const Text(
'Welcome Back',
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 22,
fontWeight: FontWeight.bold,
color: Color(0xFF1E293B),
),
),
const SizedBox(height: 8),
Text(
'Enter your credentials to continue',
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 13,
color: Colors.grey.shade500,
),
),
const SizedBox(height: 32),
TextFormField(
controller: _emailController,
keyboardType: TextInputType.emailAddress,
decoration: const InputDecoration(
labelText: 'Email Address',
prefixIcon: Icon(Icons.alternate_email_rounded, size: 20),
),
validator: (value) =>
(value == null || !value.contains('@')) ? 'Enter a valid email' : null,
),
const SizedBox(height: 16),
TextFormField(
controller: _passwordController,
obscureText: true,
decoration: const InputDecoration(
labelText: 'Password',
prefixIcon: Icon(Icons.lock_person_rounded, size: 20),
),
validator: (value) =>
(value == null || value.length < 6) ? 'Enter at least 6 characters' : null,
),
const SizedBox(height: 32),
isLoading
? const Center(child: CircularProgressIndicator())
: ElevatedButton(
onPressed: _login,
child: const Text('SIGN IN TO DASHBOARD'),
),
],
),
),
),
const SizedBox(height: 32),
const Text(
'Need an account? Contact your lead.',
style: TextStyle(color: Colors.white70, fontSize: 13),
),
],
),
),
),
],
),
);
}
}

View File

@ -0,0 +1,614 @@
import 'package:flutter/material.dart';
import 'package:intl/intl.dart';
import 'package:url_launcher/url_launcher.dart';
import 'package:provider/provider.dart';
import 'package:file_picker/file_picker.dart';
import 'package:open_filex/open_filex.dart';
import 'dart:io';
import '../models/project_model.dart';
import '../models/branch_model.dart';
import '../models/project_doc_model.dart';
import '../models/task_log_model.dart';
import '../services/project_service.dart';
import '../services/task_log_service.dart';
import 'project_form_screen.dart';
class ProjectDetailScreen extends StatefulWidget {
final ProjectModel project;
const ProjectDetailScreen({super.key, required this.project});
@override
State<ProjectDetailScreen> createState() => _ProjectDetailScreenState();
}
class _ProjectDetailScreenState extends State<ProjectDetailScreen> {
bool _isUploading = false;
bool _isEditMode = false;
late List<String> _currentFlavors;
@override
void initState() {
super.initState();
_currentFlavors = List.from(widget.project.flavors);
}
void _launchURL(String? url) async {
if (url == null || url.isEmpty) return;
final uri = Uri.parse(url);
try {
if (!await launchUrl(uri, mode: LaunchMode.externalApplication)) {
throw 'Could not launch $url';
}
} catch (e) {
if (mounted) {
ScaffoldMessenger.of(context).showSnackBar(SnackBar(content: Text(e.toString())));
}
}
}
void _addBranch() {
final controller = TextEditingController();
showDialog(
context: context,
builder: (ctx) => AlertDialog(
title: const Text("New Branch"),
content: TextField(
controller: controller,
decoration: const InputDecoration(hintText: "e.g. main, develop, feature/auth"),
autofocus: true,
),
actions: [
TextButton(onPressed: () => Navigator.pop(ctx), child: const Text("CANCEL")),
TextButton(
onPressed: () {
if (controller.text.isNotEmpty) {
context.read<ProjectService>().addBranch(widget.project.id, controller.text.trim());
}
Navigator.pop(ctx);
},
child: const Text("ADD"),
),
],
),
);
}
void _addFlavor() {
final controller = TextEditingController();
showDialog(
context: context,
builder: (ctx) => AlertDialog(
title: const Text("Add Project Flavor"),
content: TextField(
controller: controller,
decoration: const InputDecoration(hintText: "e.g. dev, prod, staging"),
autofocus: true,
),
actions: [
TextButton(onPressed: () => Navigator.pop(ctx), child: const Text("CANCEL")),
TextButton(
onPressed: () async {
String f = controller.text.trim();
if (f.isNotEmpty && !_currentFlavors.contains(f)) {
setState(() => _currentFlavors.add(f));
final updatedProject = ProjectModel(
id: widget.project.id,
name: widget.project.name,
gitUrl: widget.project.gitUrl,
apiDocUrl: widget.project.apiDocUrl,
description: widget.project.description,
flavors: _currentFlavors,
createdAt: widget.project.createdAt,
);
await context.read<ProjectService>().updateProject(updatedProject);
}
if (mounted) Navigator.pop(ctx);
},
child: const Text("ADD"),
),
],
),
);
}
void _deleteFlavor(String flavor) async {
setState(() => _currentFlavors.remove(flavor));
final updatedProject = ProjectModel(
id: widget.project.id,
name: widget.project.name,
gitUrl: widget.project.gitUrl,
apiDocUrl: widget.project.apiDocUrl,
description: widget.project.description,
flavors: _currentFlavors,
createdAt: widget.project.createdAt,
);
await context.read<ProjectService>().updateProject(updatedProject);
}
void _addDocDialog() {
showModalBottomSheet(
context: context,
builder: (ctx) => Column(
mainAxisSize: MainAxisSize.min,
children: [
ListTile(
leading: const Icon(Icons.link, color: Colors.blue),
title: const Text("Add Link"),
onTap: () {
Navigator.pop(ctx);
_addLinkDoc();
},
),
ListTile(
leading: const Icon(Icons.picture_as_pdf, color: Colors.red),
title: const Text("Upload PDF"),
onTap: () {
Navigator.pop(ctx);
_uploadPDFDoc();
},
),
const SizedBox(height: 20),
],
),
);
}
void _addLinkDoc() {
final titleCtrl = TextEditingController();
final urlCtrl = TextEditingController();
showDialog(
context: context,
builder: (ctx) => AlertDialog(
title: const Text("Add Link Document"),
content: Column(
mainAxisSize: MainAxisSize.min,
children: [
TextField(controller: titleCtrl, decoration: const InputDecoration(labelText: "Label")),
TextField(controller: urlCtrl, decoration: const InputDecoration(labelText: "URL")),
],
),
actions: [
TextButton(onPressed: () => Navigator.pop(ctx), child: const Text("CANCEL")),
TextButton(
onPressed: () {
if (titleCtrl.text.isNotEmpty && urlCtrl.text.isNotEmpty) {
context.read<ProjectService>().addDoc(
widget.project.id, titleCtrl.text.trim(), urlCtrl.text.trim(), 'link'
);
}
Navigator.pop(ctx);
},
child: const Text("SAVE"),
),
],
),
);
}
void _uploadPDFDoc() async {
FilePickerResult? result = await FilePicker.platform.pickFiles(
type: FileType.custom,
allowedExtensions: ['pdf'],
);
if (result != null) {
setState(() => _isUploading = true);
try {
File file = File(result.files.single.path!);
String label = result.files.single.name;
String url = await context.read<ProjectService>().uploadDoc(widget.project.id, file);
await context.read<ProjectService>().addDoc(widget.project.id, label, url, 'pdf');
} catch (e) {
if (mounted) ScaffoldMessenger.of(context).showSnackBar(SnackBar(content: Text("Upload failed: $e")));
} finally {
if (mounted) setState(() => _isUploading = false);
}
}
}
void _confirmDeleteProject() {
showDialog(
context: context,
builder: (ctx) => AlertDialog(
title: const Text("Delete Project"),
content: Text("Are you sure? All data related to '${widget.project.name}' will be lost."),
actions: [
TextButton(onPressed: () => Navigator.pop(ctx), child: const Text("CANCEL")),
TextButton(
onPressed: () async {
await context.read<ProjectService>().deleteProject(widget.project.id);
if (mounted) {
Navigator.pop(ctx);
Navigator.pop(context);
}
},
child: const Text("DELETE PROJECT", style: TextStyle(color: Colors.red)),
),
],
),
);
}
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: const Color(0xFFF8FAFC),
appBar: AppBar(
title: Text(widget.project.name),
actions: [
if (_isEditMode) ...[
IconButton(
onPressed: () => Navigator.push(
context,
MaterialPageRoute(builder: (_) => ProjectFormScreen(project: widget.project))
),
icon: const Icon(Icons.settings_outlined),
tooltip: "Project Settings",
),
IconButton(
onPressed: _confirmDeleteProject,
icon: const Icon(Icons.delete_forever, color: Colors.red),
tooltip: "Delete Project",
),
],
IconButton(
onPressed: () => setState(() => _isEditMode = !_isEditMode),
icon: Icon(_isEditMode ? Icons.check_circle_rounded : Icons.edit_rounded, color: _isEditMode ? Colors.green : null),
tooltip: _isEditMode ? "Finish Editing" : "Edit Mode",
),
],
),
body: SingleChildScrollView(
padding: const EdgeInsets.all(20),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
_buildLatestActivity(),
const SizedBox(height: 32),
_buildSectionHeader("Quick Links"),
Row(
children: [
_linkTile("GIT REPO", Icons.code_rounded, widget.project.gitUrl),
if (widget.project.apiDocUrl != null) ...[
const SizedBox(width: 12),
_linkTile("API DOCS", Icons.api_rounded, widget.project.apiDocUrl!),
],
],
),
const SizedBox(height: 32),
_buildSectionHeader("Description"),
Text(
widget.project.description,
style: const TextStyle(height: 1.6, color: Color(0xFF475569)),
),
const SizedBox(height: 32),
_isEditMode
? _buildSectionHeaderWithAction("Branches", Icons.add_rounded, _addBranch)
: _buildSectionHeader("Branches"),
_buildBranchList(),
const SizedBox(height: 32),
_isEditMode
? _buildSectionHeaderWithAction("Project Flavors", Icons.add_rounded, _addFlavor)
: _buildSectionHeader("Project Flavors"),
_buildFlavorList(),
const SizedBox(height: 32),
_isEditMode
? _buildSectionHeaderWithAction("Documents", Icons.add_rounded, _addDocDialog)
: _buildSectionHeader("Documents"),
if (_isUploading) const Padding(
padding: EdgeInsets.only(bottom: 12),
child: LinearProgressIndicator(),
),
_buildDocList(),
],
),
),
);
}
Widget _buildLatestActivity() {
return FutureBuilder<TaskLogModel?>(
future: context.read<TaskLogService>().getLatestLogForProject(widget.project.id),
builder: (context, snapshot) {
if (snapshot.connectionState == ConnectionState.waiting) {
return Container(
height: 80,
alignment: Alignment.center,
decoration: BoxDecoration(color: Colors.grey.shade100, borderRadius: BorderRadius.circular(24)),
child: const CircularProgressIndicator(strokeWidth: 2),
);
}
if (snapshot.hasError) {
return Container(
padding: const EdgeInsets.all(16),
decoration: BoxDecoration(color: Colors.red.shade50, borderRadius: BorderRadius.circular(16)),
child: Column(
children: [
const Icon(Icons.error_outline, color: Colors.red),
const SizedBox(height: 8),
Text(
"Query Error: ${snapshot.error}. Check if a Firestore Index is needed.",
style: const TextStyle(color: Colors.red, fontSize: 11, fontWeight: FontWeight.bold),
textAlign: TextAlign.center,
),
],
),
);
}
final log = snapshot.data;
if (log == null) {
return Container(
padding: const EdgeInsets.all(24),
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.circular(24),
border: Border.all(color: Colors.grey.shade100),
),
child: const Row(
children: [
Icon(Icons.info_outline_rounded, color: Colors.indigo),
SizedBox(width: 16),
Text(
"No activity tracked for this project yet.",
style: TextStyle(color: Color(0xFF64748B), fontSize: 13, fontWeight: FontWeight.w500),
),
],
),
);
}
return Container(
padding: const EdgeInsets.all(24),
decoration: BoxDecoration(
gradient: const LinearGradient(
colors: [Color(0xFF1E293B), Color(0xFF0F172A)],
begin: Alignment.topLeft,
end: Alignment.bottomRight,
),
borderRadius: BorderRadius.circular(32),
boxShadow: [
BoxShadow(
color: const Color(0xFF0F172A).withOpacity(0.1),
blurRadius: 20,
offset: const Offset(0, 10),
),
],
),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
const Text(
"LATEST ACTIVITY",
style: TextStyle(color: Colors.white54, fontSize: 10, fontWeight: FontWeight.bold, letterSpacing: 1.5),
),
if (log.flavor != null)
Container(
padding: const EdgeInsets.symmetric(horizontal: 10, vertical: 4),
decoration: BoxDecoration(
color: const Color(0xFF6366F1),
borderRadius: BorderRadius.circular(8),
),
child: Text(
log.flavor!.toUpperCase(),
style: const TextStyle(color: Colors.white, fontSize: 9, fontWeight: FontWeight.bold),
),
),
],
),
const SizedBox(height: 20),
Row(
children: [
CircleAvatar(
radius: 20,
backgroundColor: Colors.white.withOpacity(0.1),
child: const Icon(Icons.person_rounded, color: Colors.white70),
),
const SizedBox(width: 16),
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
log.userName,
style: const TextStyle(color: Colors.white, fontWeight: FontWeight.bold, fontSize: 18),
),
Text(
"Worked on ${log.moduleName}",
style: const TextStyle(color: Colors.white60, fontSize: 12),
),
],
),
),
Column(
crossAxisAlignment: CrossAxisAlignment.end,
children: [
Text(
DateFormat('dd MMM').format(log.date),
style: const TextStyle(color: Colors.white, fontWeight: FontWeight.bold, fontSize: 14),
),
Text(
DateFormat('yyyy').format(log.date),
style: const TextStyle(color: Colors.white38, fontSize: 10),
),
],
),
],
),
],
),
);
},
);
}
Widget _buildSectionHeader(String title) {
return Padding(
padding: const EdgeInsets.only(bottom: 16),
child: Text(
title.toUpperCase(),
style: const TextStyle(
fontWeight: FontWeight.bold,
fontSize: 12,
color: Color(0xFF6366F1),
letterSpacing: 1.2
),
),
);
}
Widget _buildSectionHeaderWithAction(String title, IconData icon, VoidCallback onTap) {
return Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
_buildSectionHeader(title),
TextButton.icon(
onPressed: onTap,
icon: Icon(icon, size: 16),
label: const Text("ADD", style: TextStyle(fontWeight: FontWeight.bold, fontSize: 11)),
style: TextButton.styleFrom(foregroundColor: const Color(0xFF6366F1)),
),
],
);
}
Widget _linkTile(String label, IconData icon, String url) {
return Expanded(
child: Material(
color: Colors.white,
borderRadius: BorderRadius.circular(20),
child: InkWell(
onTap: () => _launchURL(url),
borderRadius: BorderRadius.circular(20),
child: Container(
padding: const EdgeInsets.symmetric(vertical: 20),
decoration: BoxDecoration(
border: Border.all(color: Colors.grey.shade100),
borderRadius: BorderRadius.circular(20),
),
child: Column(
children: [
Icon(icon, color: const Color(0xFF6366F1), size: 28),
const SizedBox(height: 12),
Text(
label,
style: const TextStyle(fontWeight: FontWeight.bold, fontSize: 11, color: Color(0xFF1E293B), letterSpacing: 0.5),
),
],
),
),
),
),
);
}
Widget _buildBranchList() {
return StreamBuilder<List<BranchModel>>(
stream: context.read<ProjectService>().getBranches(widget.project.id),
builder: (context, snapshot) {
if (!snapshot.hasData) return const SizedBox();
final branches = snapshot.data!;
if (branches.isEmpty) return const Text("No active branches recorded.", style: TextStyle(color: Color(0xFF94A3B8), fontSize: 12, fontStyle: FontStyle.italic));
return Wrap(
spacing: 10,
runSpacing: 10,
children: branches.map((b) => Chip(
label: Text(b.name, style: const TextStyle(fontSize: 12, fontWeight: FontWeight.w600)),
backgroundColor: const Color(0xFFF1F5F9),
side: BorderSide.none,
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(12)),
onDeleted: _isEditMode ? () {
context.read<ProjectService>().deleteBranch(widget.project.id, b.id);
} : null,
deleteIconColor: const Color(0xFFF43F5E),
deleteIcon: const Icon(Icons.close_rounded, size: 14),
)).toList(),
);
},
);
}
Widget _buildFlavorList() {
if (_currentFlavors.isEmpty) {
return const Text("No flavors defined yet.", style: TextStyle(color: Color(0xFF94A3B8), fontSize: 12, fontStyle: FontStyle.italic));
}
return Wrap(
spacing: 10,
runSpacing: 10,
children: _currentFlavors.map((flavor) => Chip(
label: Text(flavor, style: const TextStyle(fontSize: 12, fontWeight: FontWeight.bold)),
backgroundColor: const Color(0xFFEEF2FF),
labelStyle: const TextStyle(color: Color(0xFF6366F1)),
side: BorderSide.none,
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(12)),
onDeleted: _isEditMode ? () => _deleteFlavor(flavor) : null,
deleteIconColor: const Color(0xFFF43F5E),
deleteIcon: const Icon(Icons.close_rounded, size: 14),
)).toList(),
);
}
Widget _buildDocList() {
return StreamBuilder<List<ProjectDocModel>>(
stream: context.read<ProjectService>().getDocs(widget.project.id),
builder: (context, snapshot) {
if (!snapshot.hasData) return const SizedBox();
final docs = snapshot.data!;
if (docs.isEmpty) return const Text("No documents or technical specs.", style: TextStyle(color: Color(0xFF94A3B8), fontSize: 12, fontStyle: FontStyle.italic));
return ListView.builder(
shrinkWrap: true,
physics: const NeverScrollableScrollPhysics(),
itemCount: docs.length,
itemBuilder: (context, index) {
final doc = docs[index];
return Container(
margin: const EdgeInsets.only(bottom: 8),
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.circular(16),
border: Border.all(color: Colors.grey.shade100),
),
child: ListTile(
contentPadding: const EdgeInsets.symmetric(horizontal: 16, vertical: 4),
leading: Container(
padding: const EdgeInsets.all(8),
decoration: BoxDecoration(
color: (doc.type == 'pdf' ? const Color(0xFFF43F5E) : Colors.blue).withOpacity(0.1),
borderRadius: BorderRadius.circular(10),
),
child: Icon(
doc.type == 'pdf' ? Icons.picture_as_pdf_rounded : Icons.link_rounded,
color: doc.type == 'pdf' ? const Color(0xFFF43F5E) : Colors.blue,
size: 20,
),
),
title: Text(doc.label, style: const TextStyle(fontSize: 13, fontWeight: FontWeight.bold, color: Color(0xFF1E293B))),
trailing: _isEditMode
? IconButton(
onPressed: () => context.read<ProjectService>().deleteDoc(widget.project.id, doc.id),
icon: const Icon(Icons.delete_outline_rounded, size: 18, color: Color(0xFFF43F5E)),
)
: const Icon(Icons.arrow_forward_ios_rounded, size: 14, color: Color(0xFF94A3B8)),
onTap: () {
if (!_isEditMode) {
if (doc.type == 'pdf') {
OpenFilex.open(doc.url);
} else {
_launchURL(doc.url);
}
}
},
),
);
},
);
},
);
}
}

View File

@ -0,0 +1,133 @@
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import '../models/project_model.dart';
import '../services/project_service.dart';
class ProjectFormScreen extends StatefulWidget {
final ProjectModel? project;
const ProjectFormScreen({super.key, this.project});
@override
State<ProjectFormScreen> createState() => _ProjectFormScreenState();
}
class _ProjectFormScreenState extends State<ProjectFormScreen> {
final _formKey = GlobalKey<FormState>();
final _nameController = TextEditingController();
final _gitController = TextEditingController();
final _apiController = TextEditingController();
final _descriptionController = TextEditingController();
final _flavorsController = TextEditingController();
bool _isLoading = false;
@override
void initState() {
super.initState();
_nameController.text = widget.project?.name ?? '';
_gitController.text = widget.project?.gitUrl ?? '';
_apiController.text = widget.project?.apiDocUrl ?? '';
_descriptionController.text = widget.project?.description ?? '';
_flavorsController.text = widget.project?.flavors.join(', ') ?? '';
}
@override
void dispose() {
_nameController.dispose();
_gitController.dispose();
_apiController.dispose();
_descriptionController.dispose();
_flavorsController.dispose();
super.dispose();
}
void _submit() async {
if (!_formKey.currentState!.validate()) return;
setState(() => _isLoading = true);
final List<String> flavors = _flavorsController.text
.split(',')
.map((e) => e.trim())
.where((e) => e.isNotEmpty)
.toList();
final project = ProjectModel(
id: widget.project?.id ?? '',
name: _nameController.text.trim(),
gitUrl: _gitController.text.trim(),
apiDocUrl: _apiController.text.trim().isEmpty ? null : _apiController.text.trim(),
description: _descriptionController.text.trim(),
flavors: flavors,
createdAt: widget.project?.createdAt ?? DateTime.now(),
);
try {
if (widget.project == null) {
await context.read<ProjectService>().addProject(project);
} else {
await context.read<ProjectService>().updateProject(project);
}
if (mounted) Navigator.pop(context);
} catch (e) {
if (mounted) {
ScaffoldMessenger.of(context).showSnackBar(SnackBar(content: Text("Failed: $e")));
}
} finally {
if (mounted) setState(() => _isLoading = false);
}
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.project == null ? "Create Project" : "Edit Project"),
),
body: SingleChildScrollView(
padding: const EdgeInsets.all(24),
child: Form(
key: _formKey,
child: Column(
children: [
TextFormField(
controller: _nameController,
decoration: const InputDecoration(labelText: "Project Name", border: OutlineInputBorder()),
validator: (v) => v!.isEmpty ? "Required" : null,
),
const SizedBox(height: 16),
TextFormField(
controller: _gitController,
decoration: const InputDecoration(labelText: "Git Repository URL", border: OutlineInputBorder()),
validator: (v) => v!.isEmpty ? "Required" : null,
),
const SizedBox(height: 16),
TextFormField(
controller: _apiController,
decoration: const InputDecoration(labelText: "API Documentation URL (Optional)", border: OutlineInputBorder()),
),
const SizedBox(height: 16),
TextFormField(
controller: _flavorsController,
decoration: const InputDecoration(
labelText: "Flavors (dev, prod, staging...)",
hintText: "Enter comma separated values",
border: OutlineInputBorder(),
),
),
const SizedBox(height: 16),
TextFormField(
controller: _descriptionController,
maxLines: 5,
decoration: const InputDecoration(labelText: "Description", border: OutlineInputBorder()),
validator: (v) => v!.isEmpty ? "Required" : null,
),
const SizedBox(height: 32),
_isLoading
? const CircularProgressIndicator()
: ElevatedButton(onPressed: _submit, child: const Text("SAVE PROJECT")),
],
),
),
),
);
}
}

View File

@ -0,0 +1,171 @@
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import 'package:intl/intl.dart';
import '../../models/task_log_model.dart';
import '../../models/project_model.dart';
import '../../models/user_model.dart';
import '../../services/task_log_service.dart';
import '../../services/auth_service.dart';
import '../../services/project_service.dart';
import '../../widgets/log_card.dart';
class AllLogsTab extends StatefulWidget {
const AllLogsTab({super.key});
@override
State<AllLogsTab> createState() => _AllLogsTabState();
}
class _AllLogsTabState extends State<AllLogsTab> {
DateTime? _startDate;
DateTime? _endDate;
String? _selectedProjectId;
String? _selectedUserId;
List<ProjectModel> _projects = [];
List<UserModel> _users = [];
@override
void initState() {
super.initState();
// Default range: this week
final now = DateTime.now();
_startDate = DateTime(now.year, now.month, now.day).subtract(const Duration(days: 7));
_endDate = DateTime(now.year, now.month, now.day, 23, 59, 59);
_loadFilters();
}
void _loadFilters() async {
final projects = await context.read<ProjectService>().getProjects().first;
final users = await context.read<AuthService>().getUsers().first;
if (mounted) {
setState(() {
_projects = projects;
_users = users;
});
}
}
@override
Widget build(BuildContext context) {
final service = context.read<TaskLogService>();
return Scaffold(
appBar: PreferredSize(
preferredSize: const Size.fromHeight(100),
child: Container(
color: Colors.indigo.shade50,
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 8),
child: SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: Row(
children: [
_filterChip("Date Range", Icons.calendar_today, _pickDateRange),
const SizedBox(width: 8),
_projectFilterDropdown(),
const SizedBox(width: 8),
_userFilterDropdown(),
if (_selectedProjectId != null || _selectedUserId != null) ...[
const SizedBox(width: 8),
IconButton(
onPressed: () => setState(() {
_selectedProjectId = null;
_selectedUserId = null;
}),
icon: const Icon(Icons.clear, color: Colors.red),
tooltip: "Clear Filters",
),
],
],
),
),
),
),
body: StreamBuilder<List<TaskLogModel>>(
stream: service.getTaskLogs(
from: _startDate,
to: _endDate,
projectId: _selectedProjectId,
userId: _selectedUserId,
),
builder: (context, snapshot) {
if (snapshot.connectionState == ConnectionState.waiting) return const Center(child: CircularProgressIndicator());
final logs = snapshot.data ?? [];
if (logs.isEmpty) {
return const Center(child: Text("No logs found for selected filters."));
}
return ListView.builder(
padding: const EdgeInsets.all(12),
itemCount: logs.length,
itemBuilder: (context, index) {
return LogCard(log: logs[index], canEdit: false);
},
);
},
),
);
}
Widget _filterChip(String label, IconData icon, VoidCallback onTap) {
final DateFormat formatter = DateFormat('dd/MM');
String range = "${formatter.format(_startDate!)} - ${formatter.format(_endDate!)}";
return ActionChip(
avatar: Icon(icon, size: 16, color: Colors.indigo),
label: Text(range, style: const TextStyle(fontSize: 12)),
onPressed: onTap,
backgroundColor: Colors.white,
);
}
Widget _projectFilterDropdown() {
return Container(
padding: const EdgeInsets.symmetric(horizontal: 12),
decoration: BoxDecoration(color: Colors.white, borderRadius: BorderRadius.circular(20)),
child: DropdownButton<String>(
value: _selectedProjectId,
hint: const Text("Project", style: TextStyle(fontSize: 12)),
underline: const SizedBox(),
items: [
const DropdownMenuItem(value: null, child: Text("All Projects", style: TextStyle(fontSize: 12))),
..._projects.map((p) => DropdownMenuItem(value: p.id, child: Text(p.name, style: const TextStyle(fontSize: 12))))
],
onChanged: (v) => setState(() => _selectedProjectId = v),
),
);
}
Widget _userFilterDropdown() {
return Container(
padding: const EdgeInsets.symmetric(horizontal: 12),
decoration: BoxDecoration(color: Colors.white, borderRadius: BorderRadius.circular(20)),
child: DropdownButton<String>(
value: _selectedUserId,
hint: const Text("Member", style: TextStyle(fontSize: 12)),
underline: const SizedBox(),
items: [
const DropdownMenuItem(value: null, child: Text("All Members", style: TextStyle(fontSize: 12))),
..._users.map((u) => DropdownMenuItem(value: u.uid, child: Text(u.name, style: const TextStyle(fontSize: 12))))
],
onChanged: (v) => setState(() => _selectedUserId = v),
),
);
}
void _pickDateRange() async {
final range = await showDateRangePicker(
context: context,
firstDate: DateTime(2024),
lastDate: DateTime.now(),
initialDateRange: DateTimeRange(start: _startDate!, end: _endDate!),
);
if (range != null) {
setState(() {
_startDate = range.start;
_endDate = DateTime(range.end.year, range.end.month, range.end.day, 23, 59, 59);
});
}
}
}

View File

@ -0,0 +1,233 @@
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import 'package:intl/intl.dart';
import '../../models/project_model.dart';
import '../../models/task_log_model.dart';
import '../../services/project_service.dart';
import '../../services/task_log_service.dart';
import '../project_detail_screen.dart';
import '../project_form_screen.dart';
class ProjectsTab extends StatelessWidget {
const ProjectsTab({super.key});
@override
Widget build(BuildContext context) {
final service = context.read<ProjectService>();
return Scaffold(
backgroundColor: const Color(0xFFF8FAFC),
body: StreamBuilder<List<ProjectModel>>(
stream: service.getProjects(),
builder: (context, snapshot) {
if (snapshot.connectionState == ConnectionState.waiting) {
return const Center(child: CircularProgressIndicator());
}
final projects = snapshot.data ?? [];
if (projects.isEmpty) {
return Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(Icons.folder_open_rounded, size: 100, color: Colors.grey.shade200),
const SizedBox(height: 16),
Text("No projects assigned yet.", style: TextStyle(color: Colors.grey.shade500, fontSize: 13)),
const SizedBox(height: 24),
ElevatedButton(
onPressed: () => Navigator.push(
context,
MaterialPageRoute(builder: (_) => const ProjectFormScreen())
),
style: ElevatedButton.styleFrom(minimumSize: const Size(200, 50)),
child: const Text("CREATE FIRST PROJECT"),
),
],
),
);
}
return CustomScrollView(
slivers: [
const SliverPadding(
padding: EdgeInsets.fromLTRB(20, 20, 20, 10),
sliver: SliverToBoxAdapter(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
"Workspace",
style: TextStyle(fontSize: 14, color: Color(0xFF64748B), fontWeight: FontWeight.w500),
),
Text(
"Projects",
style: TextStyle(fontSize: 28, fontWeight: FontWeight.bold, color: Color(0xFF1E293B)),
),
],
),
),
),
SliverPadding(
padding: const EdgeInsets.all(20),
sliver: SliverList(
delegate: SliverChildBuilderDelegate(
(context, index) => _ProjectCard(p: projects[index]),
childCount: projects.length,
),
),
),
],
);
},
),
floatingActionButton: FloatingActionButton.extended(
heroTag: "projects_fab",
backgroundColor: const Color(0xFF6366F1),
onPressed: () => Navigator.push(
context,
MaterialPageRoute(builder: (_) => const ProjectFormScreen())
),
label: const Text("NEW PROJECT", style: TextStyle(color: Colors.white, fontWeight: FontWeight.bold)),
icon: const Icon(Icons.add_rounded, color: Colors.white),
),
);
}
}
class _ProjectCard extends StatelessWidget {
final ProjectModel p;
const _ProjectCard({required this.p});
@override
Widget build(BuildContext context) {
final taskService = context.watch<TaskLogService>();
return Container(
margin: const EdgeInsets.only(bottom: 16),
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.circular(24),
border: Border.all(color: Colors.grey.shade100),
boxShadow: [
BoxShadow(
color: Colors.indigo.withOpacity(0.02),
blurRadius: 10,
offset: const Offset(0, 4),
),
],
),
child: InkWell(
onTap: () => Navigator.push(
context,
MaterialPageRoute(builder: (_) => ProjectDetailScreen(project: p))
),
borderRadius: BorderRadius.circular(24),
child: Padding(
padding: const EdgeInsets.all(24),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
children: [
Container(
padding: const EdgeInsets.all(10),
decoration: BoxDecoration(
color: const Color(0xFF6366F1).withOpacity(0.1),
borderRadius: BorderRadius.circular(12),
),
child: const Icon(Icons.folder_copy_rounded, color: Color(0xFF6366F1), size: 24),
),
const SizedBox(width: 16),
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
p.name,
style: const TextStyle(fontWeight: FontWeight.bold, fontSize: 18, color: Color(0xFF1E293B)),
),
Text(
"Created ${DateFormat('MMM yyyy').format(p.createdAt)}",
style: TextStyle(color: Colors.grey.shade500, fontSize: 11),
),
],
),
),
const Icon(Icons.chevron_right_rounded, color: Color(0xFF94A3B8)),
],
),
const SizedBox(height: 16),
Text(
p.description,
maxLines: 2,
overflow: TextOverflow.ellipsis,
style: const TextStyle(color: Color(0xFF475569), fontSize: 13, height: 1.5),
),
const SizedBox(height: 16),
if (p.flavors.isNotEmpty) ...[
Wrap(
spacing: 6,
runSpacing: 6,
children: p.flavors.map((flavor) => Container(
padding: const EdgeInsets.symmetric(horizontal: 10, vertical: 4),
decoration: BoxDecoration(
color: const Color(0xFFF1F5F9),
borderRadius: BorderRadius.circular(8),
),
child: Text(
flavor,
style: const TextStyle(fontSize: 10, fontWeight: FontWeight.bold, color: Color(0xFF64748B)),
),
)).toList(),
),
const SizedBox(height: 20),
],
FutureBuilder<TaskLogModel?>(
future: taskService.getLatestLogForProject(p.id),
builder: (context, snapshot) {
if (snapshot.hasError) {
return const Text(
"Index Error. Click project for link.",
style: TextStyle(fontSize: 10, color: Colors.red, fontWeight: FontWeight.bold)
);
}
final latestLog = snapshot.data;
if (latestLog == null) {
return const Text(
"No activity recorded yet.",
style: TextStyle(fontSize: 11, color: Color(0xFF94A3B8), fontStyle: FontStyle.italic)
);
}
return Container(
padding: const EdgeInsets.all(12),
decoration: BoxDecoration(
color: const Color(0xFFF8FAFC),
borderRadius: BorderRadius.circular(12),
),
child: Row(
children: [
const Icon(Icons.auto_awesome_rounded, size: 14, color: Colors.amber),
const SizedBox(width: 8),
Expanded(
child: Text(
"Latest: ${latestLog.userName} on ${DateFormat('MM/dd').format(latestLog.date)}",
style: const TextStyle(fontSize: 11, fontWeight: FontWeight.bold, color: Color(0xFF334155)),
),
),
Text(
latestLog.moduleName,
style: const TextStyle(fontSize: 10, color: Color(0xFF64748B)),
),
],
),
);
},
),
],
),
),
),
);
}
}

View File

@ -0,0 +1,213 @@
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import 'package:intl/intl.dart';
import 'package:open_filex/open_filex.dart';
import '../../models/project_model.dart';
import '../../models/user_model.dart';
import '../../services/report_service.dart';
import '../../services/task_log_service.dart';
import '../../services/project_service.dart';
import '../../services/auth_service.dart';
class ReportsTab extends StatefulWidget {
const ReportsTab({super.key});
@override
State<ReportsTab> createState() => _ReportsTabState();
}
class _ReportsTabState extends State<ReportsTab> {
DateTime _startDate = DateTime.now().subtract(const Duration(days: 30));
DateTime _endDate = DateTime.now().add(const Duration(hours: 23, minutes: 59));
String? _selectedProjectId;
String? _selectedUserId;
bool _isGenerating = false;
List<ProjectModel> _projects = [];
List<UserModel> _users = [];
@override
void initState() {
super.initState();
_loadFilters();
}
void _loadFilters() async {
final projects = await context.read<ProjectService>().getProjects().first;
final users = await context.read<AuthService>().getUsers().first;
if (mounted) {
setState(() {
_projects = projects;
_users = users;
});
}
}
Future<void> _generateReport(String type) async {
if (_isGenerating) return;
setState(() => _isGenerating = true);
try {
final logs = await context.read<TaskLogService>().getTaskLogs(
from: _startDate,
to: _endDate,
projectId: _selectedProjectId,
userId: _selectedUserId,
).first;
if (logs.isEmpty) {
if (mounted) ScaffoldMessenger.of(context).showSnackBar(const SnackBar(content: Text("No data found for selected filters.")));
setState(() => _isGenerating = false);
return;
}
final reportService = context.read<ReportService>();
dynamic file;
if (type == 'pdf') {
file = await reportService.generatePDF(logs, _startDate, _endDate);
} else {
file = await reportService.generateExcel(logs);
}
if (file != null && mounted) {
ScaffoldMessenger.of(context).showSnackBar(SnackBar(content: Text("Report generated! Opening..."), backgroundColor: Colors.green));
await OpenFilex.open(file.path);
}
} catch (e) {
if (mounted) ScaffoldMessenger.of(context).showSnackBar(SnackBar(content: Text("Report generation failed: $e")));
} finally {
if (mounted) setState(() => _isGenerating = false);
}
}
@override
Widget build(BuildContext context) {
final DateFormat formatter = DateFormat('EEE, dd MMM yyyy');
return Scaffold(
body: SingleChildScrollView(
padding: const EdgeInsets.all(24),
child: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
const Card(
color: Colors.indigo,
shape: RoundedRectangleBorder(borderRadius: BorderRadius.all(Radius.circular(16))),
child: Padding(
padding: EdgeInsets.all(24),
child: Column(
children: [
Icon(Icons.bar_chart, color: Colors.white, size: 48),
SizedBox(height: 16),
Text(
"Generate Analytics Report",
style: TextStyle(color: Colors.white, fontWeight: FontWeight.bold, fontSize: 18),
),
SizedBox(height: 8),
Text(
"Select filters below to download your team work log report.",
textAlign: TextAlign.center,
style: TextStyle(color: Colors.white70, fontSize: 14),
),
],
),
),
),
const SizedBox(height: 32),
_buildFilterRow("Date Range", "${formatter.format(_startDate)} - ${formatter.format(_endDate)}", Icons.date_range, _pickDateRange),
_buildDropdownFilter<String?>(
"Project",
_selectedProjectId,
_projects.map((p) => DropdownMenuItem(value: p.id, child: Text(p.name))).toList(),
(v) => setState(() => _selectedProjectId = v),
Icons.folder_outlined,
),
_buildDropdownFilter<String?>(
"Team Member",
_selectedUserId,
_users.map((u) => DropdownMenuItem(value: u.uid, child: Text(u.name))).toList(),
(v) => setState(() => _selectedUserId = v),
Icons.person_outline,
),
const SizedBox(height: 48),
_isGenerating
? const Center(child: CircularProgressIndicator())
: Column(
children: [
ElevatedButton.icon(
onPressed: () => _generateReport('pdf'),
icon: const Icon(Icons.picture_as_pdf),
label: const Text("DOWNLOAD PDF"),
style: ElevatedButton.styleFrom(
backgroundColor: Colors.red.shade700,
foregroundColor: Colors.white,
minimumSize: const Size(double.infinity, 55),
),
),
const SizedBox(height: 16),
OutlinedButton.icon(
onPressed: () => _generateReport('excel'),
icon: const Icon(Icons.table_chart),
label: const Text("DOWNLOAD EXCEL"),
style: OutlinedButton.styleFrom(
minimumSize: const Size(double.infinity, 55),
side: const BorderSide(color: Colors.green, width: 2),
foregroundColor: Colors.green.shade800,
),
),
],
),
],
),
),
);
}
Widget _buildFilterRow(String label, String value, IconData icon, VoidCallback onTap) {
return ListTile(
contentPadding: EdgeInsets.zero,
leading: CircleAvatar(backgroundColor: Colors.indigo.shade50, child: Icon(icon, color: Colors.indigo, size: 20)),
title: Text(label, style: const TextStyle(fontWeight: FontWeight.bold, fontSize: 14)),
subtitle: Text(value),
trailing: const Icon(Icons.chevron_right),
onTap: onTap,
);
}
Widget _buildDropdownFilter<T>(String label, T value, List<DropdownMenuItem<T>> items, ValueChanged<T> onChanged, IconData icon) {
return ListTile(
contentPadding: EdgeInsets.zero,
leading: CircleAvatar(backgroundColor: Colors.indigo.shade50, child: Icon(icon, color: Colors.indigo, size: 20)),
title: Text(label, style: const TextStyle(fontWeight: FontWeight.bold, fontSize: 14)),
subtitle: DropdownButton<T>(
value: value,
isExpanded: true,
underline: const SizedBox(),
hint: const Text("All"),
items: [
DropdownMenuItem<T>(value: null, child: const Text("All")),
...items,
],
onChanged: (v) {
if (v != null || true) onChanged(v as T);
},
),
);
}
void _pickDateRange() async {
final range = await showDateRangePicker(
context: context,
firstDate: DateTime(2024),
lastDate: DateTime.now(),
initialDateRange: DateTimeRange(start: _startDate, end: _endDate),
);
if (range != null) {
setState(() {
_startDate = range.start;
_endDate = DateTime(range.end.year, range.end.month, range.end.day, 23, 59, 59);
});
}
}
}

View File

@ -0,0 +1,211 @@
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import '../../models/task_log_model.dart';
import '../../services/task_log_service.dart';
import '../../providers/auth_provider.dart';
import '../../widgets/log_card.dart';
import '../log_form_screen.dart';
class TodayLogsTab extends StatelessWidget {
const TodayLogsTab({super.key});
@override
Widget build(BuildContext context) {
final userId = context.watch<AuthProvider>().user?.uid;
final userName = context.watch<AuthProvider>().user?.name ?? "Team Member";
final service = context.read<TaskLogService>();
final now = DateTime.now();
final startOfDay = DateTime(now.year, now.month, now.day);
final endOfDay = DateTime(now.year, now.month, now.day, 23, 59, 59);
if (userId == null) {
return const Center(child: Text("User not logged in."));
}
return Scaffold(
backgroundColor: const Color(0xFFF8FAFC),
body: StreamBuilder<List<TaskLogModel>>(
stream: service.getTaskLogs(
userId: userId,
from: startOfDay,
to: endOfDay,
),
builder: (context, snapshot) {
if (snapshot.connectionState == ConnectionState.waiting) {
return const Center(child: CircularProgressIndicator());
}
final logs = snapshot.data ?? [];
return CustomScrollView(
slivers: [
SliverPadding(
padding: const EdgeInsets.fromLTRB(20, 20, 20, 10),
sliver: SliverToBoxAdapter(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
"Hello, $userName 👋",
style: const TextStyle(fontSize: 14, color: Color(0xFF64748B), fontWeight: FontWeight.w500),
),
const Text(
"Today's Progress",
style: TextStyle(fontSize: 28, fontWeight: FontWeight.bold, color: Color(0xFF1E293B)),
),
const SizedBox(height: 20),
_buildStatsHeader(logs),
const SizedBox(height: 24),
const Row(
children: [
Icon(Icons.history_rounded, size: 18, color: Color(0xFF64748B)),
SizedBox(width: 8),
Text(
"Recent Activity",
style: TextStyle(fontSize: 16, fontWeight: FontWeight.bold, color: Color(0xFF475569)),
),
],
),
],
),
),
),
if (logs.isEmpty)
SliverFillRemaining(
hasScrollBody: false,
child: Center(
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Icon(Icons.rocket_launch_outlined, size: 100, color: Colors.grey.shade200),
const SizedBox(height: 16),
Text(
"Ready to log your first task?",
style: TextStyle(color: Colors.grey.shade500, fontSize: 13, fontWeight: FontWeight.w500),
),
const SizedBox(height: 24),
ElevatedButton.icon(
onPressed: () => Navigator.push(
context,
MaterialPageRoute(builder: (_) => const LogFormScreen())
),
icon: const Icon(Icons.add_rounded),
label: const Text("START LOGGING"),
style: ElevatedButton.styleFrom(
backgroundColor: const Color(0xFF6366F1),
padding: const EdgeInsets.symmetric(horizontal: 24, vertical: 14),
minimumSize: const Size(200, 50),
),
),
],
),
),
)
else
SliverPadding(
padding: const EdgeInsets.all(20),
sliver: SliverList(
delegate: SliverChildBuilderDelegate(
(context, index) => LogCard(log: logs[index], canEdit: true),
childCount: logs.length,
),
),
),
],
);
},
),
floatingActionButton: FloatingActionButton.extended(
heroTag: "today_logs_fab",
backgroundColor: const Color(0xFF6366F1),
onPressed: () => Navigator.push(
context,
MaterialPageRoute(builder: (_) => const LogFormScreen())
),
icon: const Icon(Icons.add_rounded, color: Colors.white),
label: const Text("LOG WORK", style: TextStyle(color: Colors.white, fontWeight: FontWeight.bold)),
),
);
}
Widget _buildStatsHeader(List<TaskLogModel> logs) {
int total = logs.length;
int done = logs.where((l) => l.status == 'done').length;
double progress = total == 0 ? 0 : done / total;
return Container(
padding: const EdgeInsets.all(24),
decoration: BoxDecoration(
gradient: const LinearGradient(
colors: [Color(0xFF6366F1), Color(0xFF4F46E5)],
begin: Alignment.topLeft,
end: Alignment.bottomRight,
),
borderRadius: BorderRadius.circular(32),
boxShadow: [
BoxShadow(
color: const Color(0xFF6366F1).withOpacity(0.3),
blurRadius: 15,
offset: const Offset(0, 8),
),
],
),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
const Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
"DAILY GOAL",
style: TextStyle(color: Colors.white70, fontSize: 10, fontWeight: FontWeight.bold, letterSpacing: 1.2),
),
SizedBox(height: 4),
Text(
"Finish Tasks 🚀",
style: TextStyle(color: Colors.white, fontWeight: FontWeight.bold, fontSize: 18),
),
],
),
Container(
padding: const EdgeInsets.all(12),
decoration: BoxDecoration(
color: Colors.white.withOpacity(0.2),
shape: BoxShape.circle,
),
child: const Icon(Icons.flash_on_rounded, color: Colors.yellow, size: 24),
),
],
),
const SizedBox(height: 24),
Row(
children: [
Text(
"${(progress * 100).toInt()}% COMPLETED",
style: const TextStyle(color: Colors.white, fontSize: 12, fontWeight: FontWeight.bold),
),
const Spacer(),
Text(
"$done/$total Tasks",
style: const TextStyle(color: Colors.white70, fontSize: 12, fontWeight: FontWeight.w500),
),
],
),
const SizedBox(height: 10),
ClipRRect(
borderRadius: BorderRadius.circular(10),
child: LinearProgressIndicator(
value: progress,
minHeight: 10,
backgroundColor: Colors.white.withOpacity(0.2),
valueColor: const AlwaysStoppedAnimation(Colors.white),
),
),
],
),
);
}
}

View File

@ -0,0 +1,62 @@
import 'package:firebase_auth/firebase_auth.dart';
import 'package:cloud_firestore/cloud_firestore.dart';
import '../models/user_model.dart';
class AuthService {
FirebaseAuth get _auth => FirebaseAuth.instance;
FirebaseFirestore get _db => FirebaseFirestore.instance;
Stream<User?> get userStream {
try {
return _auth.authStateChanges();
} catch (_) {
return const Stream.empty();
}
}
Future<UserModel?> login(String email, String password) async {
try {
UserCredential result = await _auth.signInWithEmailAndPassword(
email: email,
password: password
);
User? user = result.user;
if (user != null) {
// Ensure user document exists in Firestore (optional but helpful for names)
var doc = await _db.collection('users').doc(user.uid).get();
if (!doc.exists) {
await _db.collection('users').doc(user.uid).set({
'name': user.displayName ?? user.email!.split('@')[0],
'email': user.email,
'createdAt': FieldValue.serverTimestamp(),
});
}
return await getUser(user.uid);
}
return null;
} catch (e) {
rethrow;
}
}
Future<void> logout() async {
await _auth.signOut();
}
Future<UserModel?> getUser(String uid) async {
try {
var doc = await _db.collection('users').doc(uid).get();
if (doc.exists) {
return UserModel.fromMap(doc.id, doc.data()!);
}
return null;
} catch (e) {
return null;
}
}
Stream<List<UserModel>> getUsers() {
return _db.collection('users').snapshots().map((snapshot) =>
snapshot.docs.map((doc) => UserModel.fromMap(doc.id, doc.data())).toList());
}
}

View File

@ -0,0 +1,84 @@
import 'dart:io';
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:firebase_storage/firebase_storage.dart';
import '../models/project_model.dart';
import '../models/branch_model.dart';
import '../models/project_doc_model.dart';
class ProjectService {
FirebaseFirestore get _db => FirebaseFirestore.instance;
FirebaseStorage get _storage => FirebaseStorage.instance;
Stream<List<ProjectModel>> getProjects() {
return _db.collection('projects')
.orderBy('createdAt', descending: true)
.snapshots()
.map((snapshot) => snapshot.docs.map((doc) =>
ProjectModel.fromMap(doc.id, doc.data())).toList());
}
Future<void> addProject(ProjectModel project) async {
await _db.collection('projects').add(project.toMap());
}
Future<void> updateProject(ProjectModel project) async {
await _db.collection('projects').doc(project.id).update(project.toMap());
}
Future<void> deleteProject(String id) async {
// Note: In real app, consider deleting subcollections and storage files too.
await _db.collection('projects').doc(id).delete();
}
// Branches
Stream<List<BranchModel>> getBranches(String projectId) {
return _db.collection('projects').doc(projectId).collection('branches')
.snapshots()
.map((snapshot) => snapshot.docs.map((doc) =>
BranchModel.fromMap(doc.id, doc.data())).toList());
}
Future<List<BranchModel>> getBranchesOnce(String projectId) async {
var snapshot = await _db.collection('projects').doc(projectId).collection('branches').get();
return snapshot.docs.map((doc) => BranchModel.fromMap(doc.id, doc.data())).toList();
}
Future<void> addBranch(String projectId, String name) async {
await _db.collection('projects').doc(projectId).collection('branches').add({
'name': name
});
}
Future<void> deleteBranch(String projectId, String branchId) async {
await _db.collection('projects').doc(projectId).collection('branches').doc(branchId).delete();
}
// Docs
Stream<List<ProjectDocModel>> getDocs(String projectId) {
return _db.collection('projects').doc(projectId).collection('docs')
.orderBy('uploadedAt', descending: true)
.snapshots()
.map((snapshot) => snapshot.docs.map((doc) =>
ProjectDocModel.fromMap(doc.id, doc.data())).toList());
}
Future<void> addDoc(String projectId, String label, String url, String type) async {
await _db.collection('projects').doc(projectId).collection('docs').add({
'label': label,
'url': url,
'type': type,
'uploadedAt': FieldValue.serverTimestamp(),
});
}
Future<void> deleteDoc(String projectId, String docId) async {
await _db.collection('projects').doc(projectId).collection('docs').doc(docId).delete();
}
Future<String> uploadDoc(String projectId, File file) async {
String fileName = "${DateTime.now().millisecondsSinceEpoch}_${file.path.split(Platform.pathSeparator).last}";
var ref = _storage.ref().child('projects').child(projectId).child('docs').child(fileName);
var uploadTask = await ref.putFile(file);
return await uploadTask.ref.getDownloadURL();
}
}

View File

@ -0,0 +1,87 @@
import 'dart:io';
import 'package:pdf/pdf.dart';
import 'package:pdf/widgets.dart' as pw;
import 'package:excel/excel.dart';
import 'package:path_provider/path_provider.dart';
import 'package:intl/intl.dart';
import '../models/task_log_model.dart';
class ReportService {
Future<File> generatePDF(List<TaskLogModel> logs, DateTime from, DateTime to) async {
final pdf = pw.Document();
final DateFormat formatter = DateFormat('dd MMM yyyy');
pdf.addPage(
pw.MultiPage(
pageFormat: PdfPageFormat.a4,
build: (pw.Context context) => [
pw.Header(
level: 0,
child: pw.Text("Team Work Log Report", style: pw.TextStyle(fontSize: 24, fontWeight: pw.FontWeight.bold)),
),
pw.Text("Date Range: ${formatter.format(from)} - ${formatter.format(to)}"),
pw.SizedBox(height: 20),
pw.TableHelper.fromTextArray(
headers: ["Date", "Member", "Project", "Branch", "Module", "Status", "Remarks"],
data: logs.map((log) => [
formatter.format(log.date),
log.userName,
log.projectName,
log.branchName,
log.moduleName,
log.status.replaceAll('_', ' ').toUpperCase(),
log.remarks,
]).toList(),
headerStyle: pw.TextStyle(fontWeight: pw.FontWeight.bold),
cellAlignment: pw.Alignment.centerLeft,
),
pw.SizedBox(height: 20),
pw.Text("Total Entries: ${logs.length}"),
],
),
);
Directory tempDir = await getApplicationDocumentsDirectory();
final file = File("${tempDir.path}/Report_${DateTime.now().millisecondsSinceEpoch}.pdf");
await file.writeAsBytes(await pdf.save());
return file;
}
Future<File> generateExcel(List<TaskLogModel> logs) async {
var excel = Excel.createExcel();
Sheet sheet = excel['Work Logs'];
excel.delete('Sheet1');
DateFormat formatter = DateFormat('dd MMM yyyy');
sheet.appendRow([
TextCellValue("Date"),
TextCellValue("Member"),
TextCellValue("Project"),
TextCellValue("Branch"),
TextCellValue("Module"),
TextCellValue("Status"),
TextCellValue("Remarks")
]);
for (var log in logs) {
sheet.appendRow([
TextCellValue(formatter.format(log.date)),
TextCellValue(log.userName),
TextCellValue(log.projectName),
TextCellValue(log.branchName),
TextCellValue(log.moduleName),
TextCellValue(log.status.replaceAll('_', ' ').toUpperCase()),
TextCellValue(log.remarks),
]);
}
Directory tempDir = await getApplicationDocumentsDirectory();
final file = File("${tempDir.path}/Report_${DateTime.now().millisecondsSinceEpoch}.xlsx");
var bytes = excel.encode();
if (bytes != null) {
await file.writeAsBytes(bytes);
}
return file;
}
}

View File

@ -0,0 +1,57 @@
import 'package:cloud_firestore/cloud_firestore.dart';
import '../models/task_log_model.dart';
class TaskLogService {
FirebaseFirestore get _db => FirebaseFirestore.instance;
Stream<List<TaskLogModel>> getTaskLogs({
DateTime? from,
DateTime? to,
String? projectId,
String? userId,
}) {
Query query = _db.collection('task_logs');
if (userId != null && userId.isNotEmpty) {
query = query.where('userId', isEqualTo: userId);
}
if (projectId != null && projectId.isNotEmpty) {
query = query.where('projectId', isEqualTo: projectId);
}
if (from != null) {
query = query.where('date', isGreaterThanOrEqualTo: Timestamp.fromDate(from));
}
if (to != null) {
query = query.where('date', isLessThanOrEqualTo: Timestamp.fromDate(to));
}
return query.orderBy('date', descending: true).snapshots().map((snapshot) =>
snapshot.docs.map((doc) => TaskLogModel.fromMap(doc.id, doc.data() as Map<String, dynamic>)).toList());
}
Future<TaskLogModel?> getLatestLogForProject(String projectId) async {
final snapshot = await _db.collection('task_logs')
.where('projectId', isEqualTo: projectId)
.orderBy('date', descending: true)
.limit(1)
.get();
if (snapshot.docs.isNotEmpty) {
return TaskLogModel.fromMap(snapshot.docs.first.id, snapshot.docs.first.data());
}
return null;
}
Future<void> addTaskLog(TaskLogModel log) async {
await _db.collection('task_logs').add(log.toMap());
}
Future<void> updateTaskLog(TaskLogModel log) async {
await _db.collection('task_logs').doc(log.id).update(log.toMap());
}
Future<void> deleteTaskLog(String id) async {
await _db.collection('task_logs').doc(id).delete();
}
}

205
lib/widgets/log_card.dart Normal file
View File

@ -0,0 +1,205 @@
import 'package:flutter/material.dart';
import 'package:intl/intl.dart';
import 'package:provider/provider.dart';
import '../models/task_log_model.dart';
import '../screens/log_form_screen.dart';
import '../services/task_log_service.dart';
class LogCard extends StatelessWidget {
final TaskLogModel log;
final bool canEdit;
const LogCard({super.key, required this.log, required this.canEdit});
Color _getStatusColor() {
switch (log.status) {
case 'done': return const Color(0xFF10B981); // Emerald
case 'in_progress': return Colors.amber.shade700;
case 'blocked': return const Color(0xFFF43F5E); // Rose
default: return const Color(0xFF64748B); // Slate
}
}
@override
Widget build(BuildContext context) {
const Color rose = Color(0xFFF43F5E);
return Container(
margin: const EdgeInsets.only(bottom: 16),
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.circular(24),
border: Border.all(color: Colors.grey.shade100),
boxShadow: [
BoxShadow(
color: Colors.indigo.withOpacity(0.03),
blurRadius: 10,
offset: const Offset(0, 4),
),
],
),
child: Padding(
padding: const EdgeInsets.all(20.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
children: [
CircleAvatar(
radius: 18,
backgroundColor: _getStatusColor().withOpacity(0.1),
child: Icon(
log.status == 'done' ? Icons.check_circle_rounded :
log.status == 'blocked' ? Icons.error_rounded : Icons.pending_rounded,
color: _getStatusColor(),
size: 20,
),
),
const SizedBox(width: 12),
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
log.projectName,
style: const TextStyle(fontWeight: FontWeight.bold, fontSize: 16, color: Color(0xFF1E293B)),
),
Text(
log.userName,
style: TextStyle(color: Colors.grey.shade500, fontSize: 12, fontWeight: FontWeight.w500),
),
],
),
),
if (log.flavor != null)
Container(
padding: const EdgeInsets.symmetric(horizontal: 10, vertical: 4),
decoration: BoxDecoration(
color: Colors.indigo.shade50,
borderRadius: BorderRadius.circular(8),
),
child: Text(
log.flavor!.toUpperCase(),
style: const TextStyle(color: Color(0xFF6366F1), fontSize: 9, fontWeight: FontWeight.bold),
),
),
],
),
const SizedBox(height: 16),
Container(
padding: const EdgeInsets.all(12),
decoration: BoxDecoration(
color: const Color(0xFFF8FAFC),
borderRadius: BorderRadius.circular(16),
),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
children: [
const Icon(Icons.code, size: 14, color: Color(0xFF64748B)),
const SizedBox(width: 8),
Text(
log.moduleName,
style: const TextStyle(fontWeight: FontWeight.w600, fontSize: 13, color: Color(0xFF334155)),
),
],
),
const SizedBox(height: 6),
Row(
children: [
const Icon(Icons.account_tree_outlined, size: 14, color: Color(0xFF64748B)),
const SizedBox(width: 8),
Text(
log.branchName,
style: TextStyle(color: Colors.grey.shade600, fontSize: 12),
),
],
),
],
),
),
const SizedBox(height: 16),
Text(
log.remarks,
style: const TextStyle(fontSize: 14, color: Color(0xFF475569), height: 1.5),
),
const SizedBox(height: 20),
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Row(
children: [
const Icon(Icons.calendar_month_rounded, size: 14, color: Color(0xFF94A3B8)),
const SizedBox(width: 6),
Text(
DateFormat('dd MMM yyyy').format(log.date),
style: const TextStyle(color: Color(0xFF94A3B8), fontSize: 11, fontWeight: FontWeight.w600),
),
],
),
if (canEdit)
Row(
children: [
_actionButton(
Icons.edit_rounded,
() => Navigator.push(context, MaterialPageRoute(builder: (_) => LogFormScreen(log: log)))
),
const SizedBox(width: 8),
_actionButton(
Icons.delete_outline_rounded,
() => _confirmDelete(context),
color: rose.withOpacity(0.1),
iconColor: rose,
),
],
),
],
),
],
),
),
);
}
Widget _actionButton(IconData icon, VoidCallback onTap, {Color? color, Color? iconColor}) {
return Material(
color: color ?? const Color(0xFFF1F5F9),
borderRadius: BorderRadius.circular(10),
child: InkWell(
onTap: onTap,
borderRadius: BorderRadius.circular(10),
child: Padding(
padding: const EdgeInsets.all(8),
child: Icon(icon, size: 18, color: iconColor ?? const Color(0xFF64748B)),
),
),
);
}
void _confirmDelete(BuildContext context) {
const Color rose = Color(0xFFF43F5E);
showDialog(
context: context,
builder: (ctx) => AlertDialog(
title: const Text("Delete Entry", style: TextStyle(fontWeight: FontWeight.bold)),
content: const Text("Are you sure you want to delete this log? This action cannot be undone."),
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(24)),
actions: [
TextButton(onPressed: () => Navigator.pop(ctx), child: const Text("CANCEL")),
ElevatedButton(
style: ElevatedButton.styleFrom(
backgroundColor: rose,
minimumSize: const Size(100, 40),
),
onPressed: () {
context.read<TaskLogService>().deleteTaskLog(log.id);
Navigator.pop(ctx);
},
child: const Text("DELETE", style: TextStyle(color: Colors.white)),
),
],
),
);
}
}

1
linux/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
flutter/ephemeral

128
linux/CMakeLists.txt Normal file
View File

@ -0,0 +1,128 @@
# Project-level configuration.
cmake_minimum_required(VERSION 3.13)
project(runner LANGUAGES CXX)
# The name of the executable created for the application. Change this to change
# the on-disk name of your application.
set(BINARY_NAME "mobile_team")
# The unique GTK application identifier for this application. See:
# https://wiki.gnome.org/HowDoI/ChooseApplicationID
set(APPLICATION_ID "com.example.mobile_team")
# Explicitly opt in to modern CMake behaviors to avoid warnings with recent
# versions of CMake.
cmake_policy(SET CMP0063 NEW)
# Load bundled libraries from the lib/ directory relative to the binary.
set(CMAKE_INSTALL_RPATH "$ORIGIN/lib")
# Root filesystem for cross-building.
if(FLUTTER_TARGET_PLATFORM_SYSROOT)
set(CMAKE_SYSROOT ${FLUTTER_TARGET_PLATFORM_SYSROOT})
set(CMAKE_FIND_ROOT_PATH ${CMAKE_SYSROOT})
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY)
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
endif()
# Define build configuration options.
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
set(CMAKE_BUILD_TYPE "Debug" CACHE
STRING "Flutter build mode" FORCE)
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS
"Debug" "Profile" "Release")
endif()
# Compilation settings that should be applied to most targets.
#
# Be cautious about adding new options here, as plugins use this function by
# default. In most cases, you should add new options to specific targets instead
# of modifying this function.
function(APPLY_STANDARD_SETTINGS TARGET)
target_compile_features(${TARGET} PUBLIC cxx_std_14)
target_compile_options(${TARGET} PRIVATE -Wall -Werror)
target_compile_options(${TARGET} PRIVATE "$<$<NOT:$<CONFIG:Debug>>:-O3>")
target_compile_definitions(${TARGET} PRIVATE "$<$<NOT:$<CONFIG:Debug>>:NDEBUG>")
endfunction()
# Flutter library and tool build rules.
set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter")
add_subdirectory(${FLUTTER_MANAGED_DIR})
# System-level dependencies.
find_package(PkgConfig REQUIRED)
pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0)
# Application build; see runner/CMakeLists.txt.
add_subdirectory("runner")
# Run the Flutter tool portions of the build. This must not be removed.
add_dependencies(${BINARY_NAME} flutter_assemble)
# Only the install-generated bundle's copy of the executable will launch
# correctly, since the resources must in the right relative locations. To avoid
# people trying to run the unbundled copy, put it in a subdirectory instead of
# the default top-level location.
set_target_properties(${BINARY_NAME}
PROPERTIES
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/intermediates_do_not_run"
)
# Generated plugin build rules, which manage building the plugins and adding
# them to the application.
include(flutter/generated_plugins.cmake)
# === Installation ===
# By default, "installing" just makes a relocatable bundle in the build
# directory.
set(BUILD_BUNDLE_DIR "${PROJECT_BINARY_DIR}/bundle")
if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE)
endif()
# Start with a clean build bundle directory every time.
install(CODE "
file(REMOVE_RECURSE \"${BUILD_BUNDLE_DIR}/\")
" COMPONENT Runtime)
set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data")
set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}/lib")
install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}"
COMPONENT Runtime)
install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}"
COMPONENT Runtime)
install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}"
COMPONENT Runtime)
foreach(bundled_library ${PLUGIN_BUNDLED_LIBRARIES})
install(FILES "${bundled_library}"
DESTINATION "${INSTALL_BUNDLE_LIB_DIR}"
COMPONENT Runtime)
endforeach(bundled_library)
# Copy the native assets provided by the build.dart from all packages.
set(NATIVE_ASSETS_DIR "${PROJECT_BUILD_DIR}native_assets/linux/")
install(DIRECTORY "${NATIVE_ASSETS_DIR}"
DESTINATION "${INSTALL_BUNDLE_LIB_DIR}"
COMPONENT Runtime)
# Fully re-copy the assets directory on each build to avoid having stale files
# from a previous install.
set(FLUTTER_ASSET_DIR_NAME "flutter_assets")
install(CODE "
file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\")
" COMPONENT Runtime)
install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}"
DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime)
# Install the AOT library on non-Debug builds only.
if(NOT CMAKE_BUILD_TYPE MATCHES "Debug")
install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}"
COMPONENT Runtime)
endif()

View File

@ -0,0 +1,88 @@
# This file controls Flutter-level build steps. It should not be edited.
cmake_minimum_required(VERSION 3.10)
set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral")
# Configuration provided via flutter tool.
include(${EPHEMERAL_DIR}/generated_config.cmake)
# TODO: Move the rest of this into files in ephemeral. See
# https://github.com/flutter/flutter/issues/57146.
# Serves the same purpose as list(TRANSFORM ... PREPEND ...),
# which isn't available in 3.10.
function(list_prepend LIST_NAME PREFIX)
set(NEW_LIST "")
foreach(element ${${LIST_NAME}})
list(APPEND NEW_LIST "${PREFIX}${element}")
endforeach(element)
set(${LIST_NAME} "${NEW_LIST}" PARENT_SCOPE)
endfunction()
# === Flutter Library ===
# System-level dependencies.
find_package(PkgConfig REQUIRED)
pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0)
pkg_check_modules(GLIB REQUIRED IMPORTED_TARGET glib-2.0)
pkg_check_modules(GIO REQUIRED IMPORTED_TARGET gio-2.0)
set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/libflutter_linux_gtk.so")
# Published to parent scope for install step.
set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE)
set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE)
set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE)
set(AOT_LIBRARY "${PROJECT_DIR}/build/lib/libapp.so" PARENT_SCOPE)
list(APPEND FLUTTER_LIBRARY_HEADERS
"fl_basic_message_channel.h"
"fl_binary_codec.h"
"fl_binary_messenger.h"
"fl_dart_project.h"
"fl_engine.h"
"fl_json_message_codec.h"
"fl_json_method_codec.h"
"fl_message_codec.h"
"fl_method_call.h"
"fl_method_channel.h"
"fl_method_codec.h"
"fl_method_response.h"
"fl_plugin_registrar.h"
"fl_plugin_registry.h"
"fl_standard_message_codec.h"
"fl_standard_method_codec.h"
"fl_string_codec.h"
"fl_value.h"
"fl_view.h"
"flutter_linux.h"
)
list_prepend(FLUTTER_LIBRARY_HEADERS "${EPHEMERAL_DIR}/flutter_linux/")
add_library(flutter INTERFACE)
target_include_directories(flutter INTERFACE
"${EPHEMERAL_DIR}"
)
target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}")
target_link_libraries(flutter INTERFACE
PkgConfig::GTK
PkgConfig::GLIB
PkgConfig::GIO
)
add_dependencies(flutter flutter_assemble)
# === Flutter tool backend ===
# _phony_ is a non-existent file to force this command to run every time,
# since currently there's no way to get a full input/output list from the
# flutter tool.
add_custom_command(
OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS}
${CMAKE_CURRENT_BINARY_DIR}/_phony_
COMMAND ${CMAKE_COMMAND} -E env
${FLUTTER_TOOL_ENVIRONMENT}
"${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.sh"
${FLUTTER_TARGET_PLATFORM} ${CMAKE_BUILD_TYPE}
VERBATIM
)
add_custom_target(flutter_assemble DEPENDS
"${FLUTTER_LIBRARY}"
${FLUTTER_LIBRARY_HEADERS}
)

View File

@ -0,0 +1,15 @@
//
// Generated file. Do not edit.
//
// clang-format off
#include "generated_plugin_registrant.h"
#include <url_launcher_linux/url_launcher_plugin.h>
void fl_register_plugins(FlPluginRegistry* registry) {
g_autoptr(FlPluginRegistrar) url_launcher_linux_registrar =
fl_plugin_registry_get_registrar_for_plugin(registry, "UrlLauncherPlugin");
url_launcher_plugin_register_with_registrar(url_launcher_linux_registrar);
}

View File

@ -0,0 +1,15 @@
//
// Generated file. Do not edit.
//
// clang-format off
#ifndef GENERATED_PLUGIN_REGISTRANT_
#define GENERATED_PLUGIN_REGISTRANT_
#include <flutter_linux/flutter_linux.h>
// Registers Flutter plugins.
void fl_register_plugins(FlPluginRegistry* registry);
#endif // GENERATED_PLUGIN_REGISTRANT_

View File

@ -0,0 +1,24 @@
#
# Generated file, do not edit.
#
list(APPEND FLUTTER_PLUGIN_LIST
url_launcher_linux
)
list(APPEND FLUTTER_FFI_PLUGIN_LIST
)
set(PLUGIN_BUNDLED_LIBRARIES)
foreach(plugin ${FLUTTER_PLUGIN_LIST})
add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/linux plugins/${plugin})
target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin)
list(APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin}_plugin>)
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries})
endforeach(plugin)
foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST})
add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/linux plugins/${ffi_plugin})
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})
endforeach(ffi_plugin)

View File

@ -0,0 +1,26 @@
cmake_minimum_required(VERSION 3.13)
project(runner LANGUAGES CXX)
# Define the application target. To change its name, change BINARY_NAME in the
# top-level CMakeLists.txt, not the value here, or `flutter run` will no longer
# work.
#
# Any new source files that you add to the application should be added here.
add_executable(${BINARY_NAME}
"main.cc"
"my_application.cc"
"${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc"
)
# Apply the standard set of build settings. This can be removed for applications
# that need different build settings.
apply_standard_settings(${BINARY_NAME})
# Add preprocessor definitions for the application ID.
add_definitions(-DAPPLICATION_ID="${APPLICATION_ID}")
# Add dependency libraries. Add any application-specific dependencies here.
target_link_libraries(${BINARY_NAME} PRIVATE flutter)
target_link_libraries(${BINARY_NAME} PRIVATE PkgConfig::GTK)
target_include_directories(${BINARY_NAME} PRIVATE "${CMAKE_SOURCE_DIR}")

6
linux/runner/main.cc Normal file
View File

@ -0,0 +1,6 @@
#include "my_application.h"
int main(int argc, char** argv) {
g_autoptr(MyApplication) app = my_application_new();
return g_application_run(G_APPLICATION(app), argc, argv);
}

View File

@ -0,0 +1,148 @@
#include "my_application.h"
#include <flutter_linux/flutter_linux.h>
#ifdef GDK_WINDOWING_X11
#include <gdk/gdkx.h>
#endif
#include "flutter/generated_plugin_registrant.h"
struct _MyApplication {
GtkApplication parent_instance;
char** dart_entrypoint_arguments;
};
G_DEFINE_TYPE(MyApplication, my_application, GTK_TYPE_APPLICATION)
// Called when first Flutter frame received.
static void first_frame_cb(MyApplication* self, FlView* view) {
gtk_widget_show(gtk_widget_get_toplevel(GTK_WIDGET(view)));
}
// Implements GApplication::activate.
static void my_application_activate(GApplication* application) {
MyApplication* self = MY_APPLICATION(application);
GtkWindow* window =
GTK_WINDOW(gtk_application_window_new(GTK_APPLICATION(application)));
// Use a header bar when running in GNOME as this is the common style used
// by applications and is the setup most users will be using (e.g. Ubuntu
// desktop).
// If running on X and not using GNOME then just use a traditional title bar
// in case the window manager does more exotic layout, e.g. tiling.
// If running on Wayland assume the header bar will work (may need changing
// if future cases occur).
gboolean use_header_bar = TRUE;
#ifdef GDK_WINDOWING_X11
GdkScreen* screen = gtk_window_get_screen(window);
if (GDK_IS_X11_SCREEN(screen)) {
const gchar* wm_name = gdk_x11_screen_get_window_manager_name(screen);
if (g_strcmp0(wm_name, "GNOME Shell") != 0) {
use_header_bar = FALSE;
}
}
#endif
if (use_header_bar) {
GtkHeaderBar* header_bar = GTK_HEADER_BAR(gtk_header_bar_new());
gtk_widget_show(GTK_WIDGET(header_bar));
gtk_header_bar_set_title(header_bar, "mobile_team");
gtk_header_bar_set_show_close_button(header_bar, TRUE);
gtk_window_set_titlebar(window, GTK_WIDGET(header_bar));
} else {
gtk_window_set_title(window, "mobile_team");
}
gtk_window_set_default_size(window, 1280, 720);
g_autoptr(FlDartProject) project = fl_dart_project_new();
fl_dart_project_set_dart_entrypoint_arguments(
project, self->dart_entrypoint_arguments);
FlView* view = fl_view_new(project);
GdkRGBA background_color;
// Background defaults to black, override it here if necessary, e.g. #00000000
// for transparent.
gdk_rgba_parse(&background_color, "#000000");
fl_view_set_background_color(view, &background_color);
gtk_widget_show(GTK_WIDGET(view));
gtk_container_add(GTK_CONTAINER(window), GTK_WIDGET(view));
// Show the window when Flutter renders.
// Requires the view to be realized so we can start rendering.
g_signal_connect_swapped(view, "first-frame", G_CALLBACK(first_frame_cb),
self);
gtk_widget_realize(GTK_WIDGET(view));
fl_register_plugins(FL_PLUGIN_REGISTRY(view));
gtk_widget_grab_focus(GTK_WIDGET(view));
}
// Implements GApplication::local_command_line.
static gboolean my_application_local_command_line(GApplication* application,
gchar*** arguments,
int* exit_status) {
MyApplication* self = MY_APPLICATION(application);
// Strip out the first argument as it is the binary name.
self->dart_entrypoint_arguments = g_strdupv(*arguments + 1);
g_autoptr(GError) error = nullptr;
if (!g_application_register(application, nullptr, &error)) {
g_warning("Failed to register: %s", error->message);
*exit_status = 1;
return TRUE;
}
g_application_activate(application);
*exit_status = 0;
return TRUE;
}
// Implements GApplication::startup.
static void my_application_startup(GApplication* application) {
// MyApplication* self = MY_APPLICATION(object);
// Perform any actions required at application startup.
G_APPLICATION_CLASS(my_application_parent_class)->startup(application);
}
// Implements GApplication::shutdown.
static void my_application_shutdown(GApplication* application) {
// MyApplication* self = MY_APPLICATION(object);
// Perform any actions required at application shutdown.
G_APPLICATION_CLASS(my_application_parent_class)->shutdown(application);
}
// Implements GObject::dispose.
static void my_application_dispose(GObject* object) {
MyApplication* self = MY_APPLICATION(object);
g_clear_pointer(&self->dart_entrypoint_arguments, g_strfreev);
G_OBJECT_CLASS(my_application_parent_class)->dispose(object);
}
static void my_application_class_init(MyApplicationClass* klass) {
G_APPLICATION_CLASS(klass)->activate = my_application_activate;
G_APPLICATION_CLASS(klass)->local_command_line =
my_application_local_command_line;
G_APPLICATION_CLASS(klass)->startup = my_application_startup;
G_APPLICATION_CLASS(klass)->shutdown = my_application_shutdown;
G_OBJECT_CLASS(klass)->dispose = my_application_dispose;
}
static void my_application_init(MyApplication* self) {}
MyApplication* my_application_new() {
// Set the program name to the application ID, which helps various systems
// like GTK and desktop environments map this running application to its
// corresponding .desktop file. This ensures better integration by allowing
// the application to be recognized beyond its binary name.
g_set_prgname(APPLICATION_ID);
return MY_APPLICATION(g_object_new(my_application_get_type(),
"application-id", APPLICATION_ID, "flags",
G_APPLICATION_NON_UNIQUE, nullptr));
}

View File

@ -0,0 +1,21 @@
#ifndef FLUTTER_MY_APPLICATION_H_
#define FLUTTER_MY_APPLICATION_H_
#include <gtk/gtk.h>
G_DECLARE_FINAL_TYPE(MyApplication,
my_application,
MY,
APPLICATION,
GtkApplication)
/**
* my_application_new:
*
* Creates a new Flutter-based application.
*
* Returns: a new #MyApplication.
*/
MyApplication* my_application_new();
#endif // FLUTTER_MY_APPLICATION_H_

7
macos/.gitignore vendored Normal file
View File

@ -0,0 +1,7 @@
# Flutter-related
**/Flutter/ephemeral/
**/Pods/
# Xcode-related
**/dgph
**/xcuserdata/

View File

@ -0,0 +1 @@
#include "ephemeral/Flutter-Generated.xcconfig"

View File

@ -0,0 +1 @@
#include "ephemeral/Flutter-Generated.xcconfig"

Some files were not shown because too many files have changed in this diff Show More