first commit

This commit is contained in:
amaliyya 2025-08-20 15:42:27 +07:00
commit 2e7a41c167
924 changed files with 207166 additions and 0 deletions

45
monitoring/.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
.flutter-plugins-dependencies
.pub-cache/
.pub/
/build/
# 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
monitoring/.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: "fcf2c11572af6f390246c056bc905eca609533a0"
channel: "stable"
project_type: app
# Tracks metadata for the flutter migrate command
migration:
platforms:
- platform: root
create_revision: fcf2c11572af6f390246c056bc905eca609533a0
base_revision: fcf2c11572af6f390246c056bc905eca609533a0
- platform: android
create_revision: fcf2c11572af6f390246c056bc905eca609533a0
base_revision: fcf2c11572af6f390246c056bc905eca609533a0
- platform: ios
create_revision: fcf2c11572af6f390246c056bc905eca609533a0
base_revision: fcf2c11572af6f390246c056bc905eca609533a0
- platform: linux
create_revision: fcf2c11572af6f390246c056bc905eca609533a0
base_revision: fcf2c11572af6f390246c056bc905eca609533a0
- platform: macos
create_revision: fcf2c11572af6f390246c056bc905eca609533a0
base_revision: fcf2c11572af6f390246c056bc905eca609533a0
- platform: web
create_revision: fcf2c11572af6f390246c056bc905eca609533a0
base_revision: fcf2c11572af6f390246c056bc905eca609533a0
- platform: windows
create_revision: fcf2c11572af6f390246c056bc905eca609533a0
base_revision: fcf2c11572af6f390246c056bc905eca609533a0
# 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'

16
monitoring/README.md Normal file
View File

@ -0,0 +1,16 @@
# monitoring
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:
- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)
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.

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
monitoring/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,43 @@
plugins {
id("com.android.application")
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.monitoring"
compileSdk = flutter.compileSdkVersion
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_11.toString()
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId = "com.example.monitoring"
// 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,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="monitoring"
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.monitoring
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>

View File

@ -0,0 +1,18 @@
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)
}
tasks.register<Delete>("clean") {
delete(rootProject.layout.buildDirectory)
}

View File

@ -0,0 +1,3 @@
org.gradle.jvmargs=-Xmx8G -XX:MaxMetaspaceSize=4G -XX:ReservedCodeCacheSize=512m -XX:+HeapDumpOnOutOfMemoryError
android.useAndroidX=true
android.enableJetifier=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.12-all.zip

View File

@ -0,0 +1,25 @@
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.7.3" apply false
id("org.jetbrains.kotlin.android") version "2.1.0" apply false
}
include(":app")

BIN
monitoring/assets/404.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

BIN
monitoring/assets/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

View File

@ -0,0 +1,3 @@
description: This file stores settings for Dart & Flutter DevTools.
documentation: https://docs.flutter.dev/tools/devtools/extensions#configure-extension-enablement-states
extensions:

34
monitoring/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,26 @@
<?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>
<key>MinimumOSVersion</key>
<string>12.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,616 @@
// !$*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 */; };
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>"; };
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 */,
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 */,
);
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 = 12.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.monitoring;
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.monitoring.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.monitoring.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.monitoring.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 = 12.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 = 12.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.monitoring;
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.monitoring;
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,13 @@
import Flutter
import UIKit
@main
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
GeneratedPluginRegistrant.register(with: self)
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
}

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>

View File

@ -0,0 +1,49 @@
<?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>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDisplayName</key>
<string>Monitoring</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>monitoring</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>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>
<key>CADisableMinimumFrameDurationOnPhone</key>
<true/>
<key>UIApplicationSupportsIndirectInputEvents</key>
<true/>
</dict>
</plist>

View File

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

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.
}
}

View File

@ -0,0 +1,5 @@
// String baseUrl = 'http://10.10.9.217:8000/api';
// String baseUrl = 'http://192.168.43.24:8000/api';
// String baseUrl = 'http://10.75.50.24:8000/api';
// String baseUrl = 'http://10.0.2.2:8000/api';
String baseUrl = 'http://10.75.50.24:8000/api';

View File

@ -0,0 +1 @@
// TODO Implement this library.

35
monitoring/lib/main.dart Normal file
View File

@ -0,0 +1,35 @@
import 'dart:convert';
import 'package:flutter/material.dart';
import 'package:monitoring/screens/home_screen.dart';
import 'package:monitoring/screens/splash_screen.dart';
import 'package:shared_preferences/shared_preferences.dart';
final GlobalKey<NavigatorState> navigatorKey = GlobalKey<NavigatorState>();
void main() => runApp(const MonitoringSantriApp());
class MonitoringSantriApp extends StatelessWidget {
const MonitoringSantriApp({super.key});
void _handleLogin(String token, Map<String, dynamic> user) async {
final prefs = await SharedPreferences.getInstance();
await prefs.setString('token', token);
await prefs.setString('user', jsonEncode(user));
navigatorKey.currentState!.pushAndRemoveUntil(
MaterialPageRoute(builder: (_) => HomeScreen(token: token, user: user)),
(route) => false,
);
}
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Santri Login App',
theme: ThemeData(primarySwatch: Colors.indigo),
debugShowCheckedModeBanner: false,
navigatorKey: navigatorKey,
home: SplashScreen(onLoginSuccess: _handleLogin),
);
}
}

View File

@ -0,0 +1,28 @@
class BeritaModel {
final int id;
final String judul;
final String? ringkasan;
final String? gambarUrl;
final String? kategori;
final String? penulis;
BeritaModel({
required this.id,
required this.judul,
this.ringkasan,
this.gambarUrl,
this.kategori,
this.penulis,
});
factory BeritaModel.fromJson(Map<String, dynamic> json) {
return BeritaModel(
id: json['id'],
judul: json['judul'],
ringkasan: json['ringkasan'],
gambarUrl: json['gambar_url'],
kategori: json['kategori'],
penulis: json['penulis'],
);
}
}

View File

@ -0,0 +1,122 @@
import 'package:flutter/material.dart';
import 'features/absensi_screen.dart';
import 'features/nilai_screen.dart';
import 'features/kesehatan_screen.dart';
import 'features/prestasi_screen.dart';
import 'features/pelanggaran_screen.dart';
import 'features/berita_screen.dart';
import 'features/alumni_screen.dart';
import 'features/pembayaran_screen.dart';
class FeatureGrid extends StatelessWidget {
final String token;
const FeatureGrid({super.key, required this.token});
final List<_FeatureItem> _items = const [
_FeatureItem('Absensi', Icons.how_to_reg),
_FeatureItem('Nilai', Icons.grade),
_FeatureItem('Kesehatan', Icons.local_hospital),
_FeatureItem('Prestasi', Icons.emoji_events),
_FeatureItem('Pelanggaran', Icons.report),
_FeatureItem('Berita', Icons.article),
_FeatureItem('Alumni', Icons.people),
_FeatureItem('Pembayaran', Icons.attach_money),
];
@override
Widget build(BuildContext context) {
return GridView.builder(
itemCount: _items.length,
gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: 4,
crossAxisSpacing: 12,
mainAxisSpacing: 12,
),
itemBuilder: (context, index) {
final item = _items[index];
return GestureDetector(
onTap: () {
Widget? destination;
switch (item.label) {
case 'Absensi':
destination = AbsensiScreen(token: token);
break;
case 'Nilai':
destination = NilaiScreen(token: token);
break;
case 'Kesehatan':
destination = KesehatanScreen(token: token);
break;
case 'Prestasi':
destination = PrestasiScreen(token: token);
break;
case 'Pelanggaran':
destination = PelanggaranScreen(token: token);
break;
case 'Berita':
destination = BeritaScreen(token: token);
break;
case 'Alumni':
destination = AlumniScreen(token: token);
break;
case 'Pembayaran':
destination = PembayaranScreen(token: token);
break;
}
if (destination != null) {
Navigator.push(
context,
MaterialPageRoute(builder: (_) => destination!),
);
}
},
child: Container(
decoration: BoxDecoration(
gradient: const LinearGradient(
colors: [Color(0xFF43A047), Color(0xFFFFEB3B)],
begin: Alignment.topLeft,
end: Alignment.bottomRight,
),
borderRadius: BorderRadius.circular(16),
boxShadow: [
BoxShadow(
color: Colors.black.withOpacity(0.08),
blurRadius: 8,
offset: const Offset(0, 4),
),
],
),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(item.icon, size: 32, color: Colors.white),
const SizedBox(height: 8),
Text(
item.label,
style: const TextStyle(
fontSize: 12,
fontWeight: FontWeight.bold,
color: Colors.white,
),
textAlign: TextAlign.center,
),
],
),
),
);
},
);
}
}
class _FeatureItem {
final String label;
final IconData icon;
const _FeatureItem(this.label, this.icon);
}

View File

@ -0,0 +1,167 @@
import 'dart:convert';
import 'package:flutter/material.dart';
import 'package:http/http.dart' as http;
import 'package:monitoring/config.dart';
class AbsensiScreen extends StatefulWidget {
final String token;
const AbsensiScreen({super.key, required this.token});
@override
State<AbsensiScreen> createState() => _AbsensiScreenState();
}
class _AbsensiScreenState extends State<AbsensiScreen> {
List<dynamic> data = [];
List<dynamic> filteredData = [];
bool loading = true;
int selectedMonth = DateTime.now().month;
final List<String> months = [
'Januari',
'Februari',
'Maret',
'April',
'Mei',
'Juni',
'Juli',
'Agustus',
'September',
'Oktober',
'November',
'Desember',
];
@override
void initState() {
super.initState();
fetchAbsensi();
}
Future<void> fetchAbsensi() async {
final url = Uri.parse('$baseUrl/absensi');
try {
final response = await http.get(
url,
headers: {
'Accept': 'application/json',
'Authorization': 'Bearer ${widget.token}',
},
);
if (response.statusCode == 200) {
final resData = json.decode(response.body);
setState(() {
data = resData['data'];
loading = false;
applyMonthFilter();
});
} else {
setState(() => loading = false);
}
} catch (e) {
setState(() => loading = false);
}
}
void applyMonthFilter() {
setState(() {
filteredData =
data.where((item) {
final date = DateTime.tryParse(item['tanggal'] ?? '');
return date != null && date.month == selectedMonth;
}).toList();
});
}
Color getStatusColor(String status) {
switch (status.toLowerCase()) {
case 'hadir':
return Colors.green;
case 'sakit':
return Colors.orange;
case 'izin':
return Colors.blue;
default:
return Colors.grey;
}
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Absensi'),
actions: [
Padding(
padding: const EdgeInsets.symmetric(horizontal: 12),
child: DropdownButtonHideUnderline(
child: DropdownButton<int>(
value: selectedMonth,
items: List.generate(12, (index) {
final monthName = months[index];
return DropdownMenuItem(
value: index + 1,
child: Text(monthName),
);
}),
onChanged: (value) {
if (value != null) {
setState(() {
selectedMonth = value;
applyMonthFilter();
});
}
},
),
),
),
],
),
body:
loading
? const Center(child: CircularProgressIndicator())
: filteredData.isEmpty
? const Center(child: Text('Tidak ada data absensi bulan ini.'))
: ListView.builder(
itemCount: filteredData.length,
itemBuilder: (context, index) {
final item = filteredData[index];
final tanggal = item['tanggal'] ?? '-';
final status = item['status'] ?? '-';
final keterangan = item['keterangan'] ?? '';
return ListTile(
leading: const Icon(
Icons.calendar_today,
color: Colors.green,
),
title: Text(tanggal),
subtitle: keterangan.isNotEmpty ? Text(keterangan) : null,
trailing: Container(
padding: const EdgeInsets.symmetric(
horizontal: 12,
vertical: 6,
),
decoration: BoxDecoration(
color: getStatusColor(status).withOpacity(0.1),
border: Border.all(color: getStatusColor(status)),
borderRadius: BorderRadius.circular(20),
),
child: Text(
status.toUpperCase(),
style: TextStyle(
color: getStatusColor(status),
fontWeight: FontWeight.bold,
fontSize: 12,
),
),
),
);
},
),
);
}
}

View File

@ -0,0 +1,203 @@
import 'package:flutter/material.dart';
import 'package:http/http.dart' as http;
import 'package:monitoring/config.dart';
import 'package:url_launcher/url_launcher.dart';
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
import 'dart:convert';
class AlumniScreen extends StatefulWidget {
final String token;
const AlumniScreen({super.key, required this.token});
@override
State<AlumniScreen> createState() => _AlumniScreenState();
}
class _AlumniScreenState extends State<AlumniScreen> {
List<dynamic> data = [];
bool loading = true;
@override
void initState() {
super.initState();
fetchAlumni();
}
Future<void> fetchAlumni() async {
final url = '$baseUrl/alumni';
try {
final response = await http.get(
Uri.parse(url),
headers: {
'Accept': 'application/json',
'Authorization': 'Bearer ${widget.token}',
},
);
if (response.statusCode == 200) {
final jsonData = json.decode(response.body);
debugPrint('Data diterima: ${json.encode(jsonData)}');
if (jsonData != null &&
jsonData['data'] != null &&
jsonData['data'] is List) {
setState(() {
data = jsonData['data'];
loading = false;
});
} else {
debugPrint('Format JSON tidak sesuai: $jsonData');
setState(() => loading = false);
}
} else {
debugPrint('Gagal ambil alumni: ${response.body}');
setState(() => loading = false);
}
} catch (e) {
debugPrint('Gagal mengambil alumni: $e');
setState(() => loading = false);
}
}
Future<void> _launchWhatsApp(String number) async {
final uri = Uri.parse("https://wa.me/$number");
if (await canLaunchUrl(uri)) {
await launchUrl(uri, mode: LaunchMode.externalApplication);
} else {
ScaffoldMessenger.of(
context,
).showSnackBar(const SnackBar(content: Text('Gagal membuka WhatsApp')));
}
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text('Data Alumni')),
body: loading
? const Center(child: CircularProgressIndicator())
: data.isEmpty
? const Center(child: Text('Tidak ada data alumni.'))
: ListView.builder(
padding: const EdgeInsets.all(12),
itemCount: data.length,
itemBuilder: (context, index) {
final alumni = data[index];
return Card(
elevation: 3,
margin: const EdgeInsets.only(bottom: 12),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(12),
),
child: Padding(
padding: const EdgeInsets.all(16),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
children: [
const Icon(
Icons.person,
color: Colors.green,
),
const SizedBox(width: 8),
Expanded(
child: Text(
alumni['nama'] ?? '-',
style: const TextStyle(
fontSize: 18,
fontWeight: FontWeight.bold,
),
),
),
Chip(
label: Text(
'Angkatan ${alumni['angkatan'] ?? 'Tidak Diketahui'}',
style: const TextStyle(fontSize: 12),
),
backgroundColor: Colors.green.shade50,
labelStyle: const TextStyle(
color: Colors.green,
),
),
],
),
const SizedBox(height: 12),
Row(
children: [
const Icon(
Icons.work_outline,
size: 20,
color: Colors.black54,
),
const SizedBox(width: 8),
Expanded(
child: Text(
alumni['aktivitas_setelah_lulus'] ?? '-',
style: const TextStyle(fontSize: 14),
),
),
],
),
const SizedBox(height: 6),
Row(
children: [
const Icon(
Icons.phone_android,
size: 20,
color: Colors.black54,
),
const SizedBox(width: 8),
Text(
alumni['kontak'] ?? '-',
style: const TextStyle(fontSize: 14),
),
if ((alumni['kontak'] ?? '')
.toString()
.isNotEmpty)
IconButton(
icon: const FaIcon(
FontAwesomeIcons.whatsapp,
color: Colors.green,
),
tooltip: 'Hubungi di WhatsApp',
onPressed: () {
_launchWhatsApp(
alumni['kontak'].toString(),
);
},
),
],
),
if (alumni['keterangan'] != null &&
alumni['keterangan'].toString().isNotEmpty)
Padding(
padding: const EdgeInsets.only(top: 8),
child: Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const Icon(
Icons.info_outline,
size: 20,
color: Colors.black54,
),
const SizedBox(width: 8),
Expanded(
child: Text(
alumni['keterangan'],
style: const TextStyle(fontSize: 14),
),
),
],
),
),
],
),
),
);
},
),
);
}
}

View File

@ -0,0 +1,90 @@
import 'package:flutter/material.dart';
import 'package:monitoring/models/berita_model.dart';
class BeritaDetailScreen extends StatelessWidget {
final BeritaModel berita;
const BeritaDetailScreen({super.key, required this.berita});
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: const Color(0xFFF8F9FA),
appBar: AppBar(
title: const Text('Detail Berita'),
backgroundColor: Color(0xFF43A047),
foregroundColor: Colors.white,
elevation: 0,
),
body: SingleChildScrollView(
padding: const EdgeInsets.all(16),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
// Gambar
ClipRRect(
borderRadius: BorderRadius.circular(12),
child:
berita.gambarUrl != null
? Image.network(
berita.gambarUrl!,
width: double.infinity,
height: 200,
fit: BoxFit.cover,
errorBuilder:
(_, __, ___) => Image.asset(
'assets/404.png',
width: double.infinity,
height: 200,
fit: BoxFit.cover,
),
)
: Image.asset(
'assets/404.png',
width: double.infinity,
height: 200,
fit: BoxFit.cover,
),
),
const SizedBox(height: 16),
// Judul
Text(
berita.judul,
style: const TextStyle(
fontSize: 24,
fontWeight: FontWeight.bold,
color: Colors.black87,
),
),
const SizedBox(height: 8),
// Kategori dan Penulis
Row(
children: [
Chip(
label: Text(berita.kategori ?? 'Umum'),
backgroundColor: Colors.pink.shade100,
),
const SizedBox(width: 8),
Text(
'Oleh ${berita.penulis ?? '-'}',
style: const TextStyle(fontSize: 14, color: Colors.grey),
),
],
),
const SizedBox(height: 16),
// Ringkasan atau isi
Text(
berita.ringkasan ?? 'Tidak ada isi berita.',
textAlign: TextAlign.justify,
style: const TextStyle(fontSize: 16, height: 1.5),
),
],
),
),
);
}
}

View File

@ -0,0 +1,450 @@
// Lengkap: CRUD layanan Flutter (Tanpa Edit)
import 'dart:convert';
import 'dart:io';
import 'package:flutter/material.dart';
import 'package:image_picker/image_picker.dart';
import 'package:http/http.dart' as http;
import 'package:monitoring/config.dart';
class Service {
final int id;
final String name;
final int price;
final String? imageUrl;
Service({
required this.id,
required this.name,
required this.price,
this.imageUrl,
});
factory Service.fromJson(Map<String, dynamic> json) {
return Service(
id: json['id'],
name: json['name'],
price: json['price'],
imageUrl: json['image'],
);
}
}
class DataLayananPage extends StatefulWidget {
final String token;
const DataLayananPage({super.key, required this.token});
@override
State<DataLayananPage> createState() => _DataLayananPageState();
}
class _DataLayananPageState extends State<DataLayananPage> {
List categories = [];
Map<int, List<Service>> servicesByCategory = {};
int? selectedCategoryId;
bool loadingCategories = true;
bool loadingServices = false;
String? imagePath;
@override
void initState() {
super.initState();
fetchCategories();
}
Future<void> fetchCategories() async {
setState(() => loadingCategories = true);
try {
final response = await http.get(
Uri.parse('$baseUrl/categories'),
headers: {
'Authorization': 'Bearer ${widget.token}',
'Accept': 'application/json',
},
);
if (response.statusCode == 200) {
final data = json.decode(response.body);
setState(() {
categories = data is List ? data : data['categories'];
if (categories.isNotEmpty) {
selectedCategoryId = categories[0]['id'];
fetchServicesByCategory(selectedCategoryId!);
}
});
}
} catch (e) {
print(e);
} finally {
setState(() => loadingCategories = false);
}
}
Future<void> fetchServicesByCategory(int categoryId) async {
setState(() => loadingServices = true);
try {
final response = await http.get(
Uri.parse('$baseUrl/api/services?category_id=$categoryId'),
headers: {
'Authorization': 'Bearer ${widget.token}',
'Accept': 'application/json',
},
);
if (response.statusCode == 200) {
final data = json.decode(response.body);
final List<Service> services =
(data as List).map((item) => Service.fromJson(item)).toList();
setState(() {
servicesByCategory[categoryId] = services;
});
}
} catch (e) {
print(e);
} finally {
setState(() => loadingServices = false);
}
}
Future<void> addService({
required String name,
required String price,
required String description,
required int categoryId,
required File? imageFile,
}) async {
final url = Uri.parse('$baseUrl/api/services');
final request =
http.MultipartRequest('POST', url)
..headers.addAll({
'Authorization': 'Bearer ${widget.token}',
'Accept': 'application/json',
})
..fields['name'] = name
..fields['category_id'] = categoryId.toString()
..fields['price'] = price
..fields['description'] = description;
if (imageFile != null) {
request.files.add(
await http.MultipartFile.fromPath('image', imageFile.path),
);
}
final response = await request.send();
if (response.statusCode == 201) {
print("Layanan berhasil ditambahkan.");
await fetchServicesByCategory(categoryId);
} else {
final respStr = await response.stream.bytesToString();
print("Gagal tambah layanan: $respStr");
}
}
Future<void> deleteService(int id, int categoryId) async {
final url = Uri.parse('$baseUrl/services/$id');
final response = await http.delete(
url,
headers: {
'Authorization': 'Bearer ${widget.token}',
'Accept': 'application/json',
},
);
if (response.statusCode == 200) {
print("Layanan berhasil dihapus.");
await fetchServicesByCategory(categoryId);
} else {
print("Gagal hapus layanan: ${response.body}");
}
}
void showAddServiceDialog() {
final nameController = TextEditingController();
final priceController = TextEditingController();
final descriptionController = TextEditingController();
int? selectedDialogCategoryId = selectedCategoryId;
String? previewImagePath;
imagePath = null;
showDialog(
context: context,
builder:
(context) => StatefulBuilder(
builder: (context, setStateDialog) {
return AlertDialog(
title: const Text('Tambah Layanan'),
content: SingleChildScrollView(
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
DropdownButtonFormField<int>(
value: selectedDialogCategoryId,
items:
categories.map<DropdownMenuItem<int>>((category) {
return DropdownMenuItem<int>(
value: category['id'],
child: Text(category['name']),
);
}).toList(),
onChanged:
(value) => setStateDialog(
() => selectedDialogCategoryId = value,
),
decoration: const InputDecoration(
labelText: 'Kategori',
),
),
TextField(
controller: nameController,
decoration: const InputDecoration(
labelText: 'Nama Layanan',
),
),
TextField(
controller: priceController,
keyboardType: TextInputType.number,
decoration: const InputDecoration(labelText: 'Harga'),
),
TextField(
controller: descriptionController,
decoration: const InputDecoration(
labelText: 'Deskripsi',
),
),
ElevatedButton(
onPressed: () async {
final picker = ImagePicker();
final pickedFile = await picker.pickImage(
source: ImageSource.gallery,
);
if (pickedFile != null) {
setStateDialog(() {
previewImagePath = pickedFile.path;
imagePath = pickedFile.path;
});
}
},
child: const Text('Pilih Gambar'),
),
if (previewImagePath != null)
Image.file(File(previewImagePath!), height: 100),
],
),
),
actions: [
TextButton(
onPressed: () => Navigator.pop(context),
child: const Text('Batal'),
),
ElevatedButton(
onPressed: () async {
if (nameController.text.isEmpty ||
priceController.text.isEmpty ||
descriptionController.text.isEmpty ||
selectedDialogCategoryId == null) {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(
content: Text('Semua field harus diisi'),
),
);
return;
}
await addService(
name: nameController.text,
price: priceController.text,
description: descriptionController.text,
categoryId: selectedDialogCategoryId!,
imageFile: imagePath != null ? File(imagePath!) : null,
);
Navigator.pop(context);
},
child: const Text('Simpan'),
),
],
);
},
),
);
}
void selectCategory(int categoryId) async {
if (selectedCategoryId == categoryId) return;
setState(() => selectedCategoryId = categoryId);
await fetchServicesByCategory(categoryId);
}
@override
Widget build(BuildContext context) {
final primaryColor = const Color(0xFFF06292);
final backgroundColor = const Color(0xFFFFF6F9);
final services =
selectedCategoryId != null
? (servicesByCategory[selectedCategoryId!] ?? [])
: [];
return Scaffold(
backgroundColor: backgroundColor,
appBar: AppBar(
title: const Text('Data Layanan'),
backgroundColor: primaryColor,
),
floatingActionButton: FloatingActionButton(
backgroundColor: primaryColor,
onPressed: showAddServiceDialog,
child: const Icon(Icons.add),
),
body: Column(
children: [
SizedBox(
height: 60,
child:
loadingCategories
? const Center(child: CircularProgressIndicator())
: ListView.builder(
scrollDirection: Axis.horizontal,
itemCount: categories.length,
itemBuilder: (context, index) {
final category = categories[index];
final isSelected = category['id'] == selectedCategoryId;
return GestureDetector(
onTap: () => selectCategory(category['id']),
child: Container(
margin: const EdgeInsets.symmetric(
horizontal: 8,
vertical: 10,
),
padding: const EdgeInsets.symmetric(horizontal: 20),
decoration: BoxDecoration(
color:
isSelected
? primaryColor
: Colors.pink.shade100,
borderRadius: BorderRadius.circular(20),
),
child: Center(
child: Text(
category['name'],
style: TextStyle(
color:
isSelected ? Colors.white : Colors.black,
fontWeight: FontWeight.bold,
),
),
),
),
);
},
),
),
const Divider(),
Expanded(
child:
loadingServices
? const Center(child: CircularProgressIndicator())
: services.isEmpty
? const Center(child: Text('Belum ada layanan.'))
: ListView.builder(
itemCount: services.length,
itemBuilder: (context, index) {
final service = services[index];
return Card(
margin: const EdgeInsets.symmetric(
horizontal: 10,
vertical: 8,
),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(15),
),
elevation: 4,
child: ListTile(
contentPadding: const EdgeInsets.all(10),
leading:
service.imageUrl != null &&
service.imageUrl!.isNotEmpty
? ClipRRect(
borderRadius: BorderRadius.circular(10),
child: Image.network(
service.imageUrl!,
width: 60,
height: 60,
fit: BoxFit.cover,
errorBuilder:
(context, error, stackTrace) =>
const Icon(
Icons.broken_image,
size: 60,
),
),
)
: const Icon(
Icons.image,
size: 60,
color: Colors.grey,
),
title: Text(
service.name,
style: const TextStyle(
fontWeight: FontWeight.bold,
),
),
subtitle: Text("Rp ${service.price}"),
trailing: IconButton(
icon: const Icon(Icons.delete, color: Colors.red),
onPressed: () async {
final confirm = await showDialog<bool>(
context: context,
builder:
(context) => AlertDialog(
title: const Text('Hapus Layanan'),
content: const Text(
'Apakah Anda yakin ingin menghapus layanan ini?',
),
actions: [
TextButton(
onPressed:
() => Navigator.pop(
context,
false,
),
child: const Text('Batal'),
),
ElevatedButton(
onPressed:
() => Navigator.pop(
context,
true,
),
child: const Text('Hapus'),
),
],
),
);
if (confirm == true) {
await deleteService(
service.id,
selectedCategoryId!,
);
}
},
),
),
);
},
),
),
],
),
);
}
}

View File

@ -0,0 +1,143 @@
import 'package:flutter/material.dart';
import 'package:dio/dio.dart';
import 'package:monitoring/config.dart';
import 'package:monitoring/models/berita_model.dart';
import 'package:monitoring/screens/features/berita_detail_screen.dart';
class BeritaScreen extends StatefulWidget {
final String token;
const BeritaScreen({super.key, required this.token});
@override
State<BeritaScreen> createState() => _BeritaScreenState();
}
class _BeritaScreenState extends State<BeritaScreen> {
List<BeritaModel> beritaList = [];
bool loading = true;
@override
void initState() {
super.initState();
fetchBerita();
}
Future<void> fetchBerita() async {
try {
final dio = Dio(
BaseOptions(
baseUrl: '$baseUrl',
headers: {
'Accept': 'application/json',
'Authorization': 'Bearer ${widget.token}',
},
),
);
final res = await dio.get('/berita');
final List raw = res.data['data'];
setState(() {
beritaList = raw.map((e) => BeritaModel.fromJson(e)).toList();
loading = false;
});
} catch (e) {
debugPrint('Gagal: $e');
setState(() => loading = false);
}
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Berita'),
backgroundColor: Color(0xFF43A047),
foregroundColor: Colors.white,
),
body:
loading
? const Center(child: CircularProgressIndicator())
: ListView.builder(
itemCount: beritaList.length,
padding: const EdgeInsets.all(12),
itemBuilder: (context, index) {
final berita = beritaList[index];
return Card(
margin: const EdgeInsets.only(bottom: 12),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(12),
),
elevation: 2,
child: Column(
children: [
if (berita.gambarUrl != null)
ClipRRect(
borderRadius: const BorderRadius.vertical(
top: Radius.circular(12),
),
child: Image.network(
berita.gambarUrl!,
height: 160,
width: double.infinity,
fit: BoxFit.cover,
errorBuilder:
(_, __, ___) => Image.asset('assets/404.png'),
),
),
Padding(
padding: const EdgeInsets.all(12),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
berita.judul,
style: const TextStyle(
fontSize: 18,
fontWeight: FontWeight.bold,
),
),
const SizedBox(height: 6),
Text(
berita.ringkasan ?? '-',
maxLines: 2,
overflow: TextOverflow.ellipsis,
),
const SizedBox(height: 8),
Text(
'Kategori: ${berita.kategori ?? '-'} - oleh ${berita.penulis ?? '-'}',
style: const TextStyle(
fontSize: 12,
color: Colors.grey,
),
),
Align(
alignment: Alignment.centerRight,
child: GestureDetector(
onTap: () {
Navigator.push(
context,
MaterialPageRoute(
builder:
(context) => BeritaDetailScreen(
berita: berita,
),
),
);
},
child: Text(
'Selengkapnya...',
style: TextStyle(color: Colors.blue),
),
),
),
],
),
),
],
),
);
},
),
);
}
}

View File

@ -0,0 +1,206 @@
import 'package:flutter/material.dart';
import 'package:dio/dio.dart';
import 'package:monitoring/config.dart';
class ChangePasswordScreen extends StatefulWidget {
final String token;
const ChangePasswordScreen({super.key, required this.token});
@override
State<ChangePasswordScreen> createState() => _ChangePasswordScreenState();
}
class _ChangePasswordScreenState extends State<ChangePasswordScreen> {
final _formKey = GlobalKey<FormState>();
final _oldPassController = TextEditingController();
final _newPassController = TextEditingController();
final _confirmPassController = TextEditingController();
bool _loading = false;
bool _obscureOld = true;
bool _obscureNew = true;
bool _obscureConfirm = true;
Future<void> _submit() async {
if (!_formKey.currentState!.validate()) return;
setState(() => _loading = true);
try {
final dio = Dio(
BaseOptions(
headers: {
'Authorization': 'Bearer ${widget.token}',
'Accept': 'application/json',
},
),
);
final response = await dio.post(
'$baseUrl/password',
data: {
'old_password': _oldPassController.text.trim(),
'new_password': _newPassController.text.trim(),
'confirm_password': _confirmPassController.text.trim(),
},
);
if (context.mounted) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(content: Text(response.data['message'] ?? 'Berhasil')),
);
Navigator.pop(context);
}
} on DioException catch (e) {
final msg =
e.response?.data['message'] ??
e.response?.data.toString() ??
'Gagal mengganti password';
ScaffoldMessenger.of(context).showSnackBar(SnackBar(content: Text(msg)));
} catch (_) {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(
content: Text('Terjadi kesalahan saat mengganti password'),
),
);
} finally {
setState(() => _loading = false);
}
}
@override
void dispose() {
_oldPassController.dispose();
_newPassController.dispose();
_confirmPassController.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
const fieldPadding = EdgeInsets.symmetric(vertical: 8);
return Scaffold(
appBar: AppBar(title: const Text('Ganti Password')),
body: SingleChildScrollView(
padding: const EdgeInsets.all(20),
child: Form(
key: _formKey,
child: Column(
children: [
const Text(
'Untuk alasan keamanan, gunakan password baru yang kuat dan mudah diingat.',
style: TextStyle(fontSize: 14, color: Colors.black87),
),
const SizedBox(height: 16),
/// Old password
Padding(
padding: fieldPadding,
child: TextFormField(
controller: _oldPassController,
obscureText: _obscureOld,
decoration: InputDecoration(
labelText: 'Password Saat Ini',
border: const OutlineInputBorder(),
suffixIcon: IconButton(
icon: Icon(
_obscureOld ? Icons.visibility_off : Icons.visibility,
),
onPressed:
() => setState(() => _obscureOld = !_obscureOld),
),
),
validator:
(val) =>
val == null || val.isEmpty ? 'Wajib diisi' : null,
),
),
/// New password
Padding(
padding: fieldPadding,
child: TextFormField(
controller: _newPassController,
obscureText: _obscureNew,
decoration: InputDecoration(
labelText: 'Password Baru',
border: const OutlineInputBorder(),
suffixIcon: IconButton(
icon: Icon(
_obscureNew ? Icons.visibility_off : Icons.visibility,
),
onPressed:
() => setState(() => _obscureNew = !_obscureNew),
),
),
validator: (val) {
if (val == null || val.isEmpty) return 'Wajib diisi';
if (val.length < 6) return 'Minimal 6 karakter';
return null;
},
),
),
/// Confirm password
Padding(
padding: fieldPadding,
child: TextFormField(
controller: _confirmPassController,
obscureText: _obscureConfirm,
decoration: InputDecoration(
labelText: 'Konfirmasi Password Baru',
border: const OutlineInputBorder(),
suffixIcon: IconButton(
icon: Icon(
_obscureConfirm
? Icons.visibility_off
: Icons.visibility,
),
onPressed:
() => setState(
() => _obscureConfirm = !_obscureConfirm,
),
),
),
validator:
(val) =>
val != _newPassController.text
? 'Password tidak cocok'
: null,
),
),
const SizedBox(height: 24),
SizedBox(
width: double.infinity,
child: ElevatedButton.icon(
onPressed: _loading ? null : _submit,
icon: const Icon(Icons.lock_open),
label:
_loading
? const SizedBox(
height: 20,
width: 20,
child: CircularProgressIndicator(
strokeWidth: 2,
color: Colors.white,
),
)
: const Text('Simpan Password'),
style: ElevatedButton.styleFrom(
padding: const EdgeInsets.symmetric(vertical: 14),
backgroundColor: Colors.green,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10),
),
),
),
),
],
),
),
),
);
}
}

View File

@ -0,0 +1,261 @@
import 'dart:io';
import 'package:dio/dio.dart';
import 'package:flutter/material.dart';
import 'package:image_picker/image_picker.dart';
import 'package:http_parser/http_parser.dart';
import 'package:monitoring/config.dart';
class EditProfileScreen extends StatefulWidget {
final String token;
const EditProfileScreen({super.key, required this.token});
@override
State<EditProfileScreen> createState() => _EditProfileScreenState();
}
class _EditProfileScreenState extends State<EditProfileScreen> {
final _formKey = GlobalKey<FormState>();
bool _loading = true;
bool _saving = false;
final _nameController = TextEditingController();
final _alamatController = TextEditingController();
final _tempatLahirController = TextEditingController();
final _tanggalLahirController = TextEditingController();
String? _jenisKelamin;
String? _fotoUrl;
File? _selectedImage;
@override
void initState() {
super.initState();
fetchProfile();
}
Future<void> fetchProfile() async {
try {
final dio = Dio(
BaseOptions(
headers: {
'Authorization': 'Bearer ${widget.token}',
'Accept': 'application/json',
},
),
);
final response = await dio.get('$baseUrl/santri/me');
final data = response.data;
final user = data['user'];
final santri = data['santri'];
setState(() {
_nameController.text = user['name'] ?? '';
_alamatController.text = santri['alamat'] ?? '';
_tempatLahirController.text = santri['tempat_lahir'] ?? '';
_tanggalLahirController.text = santri['tanggal_lahir'] ?? '';
_jenisKelamin = santri['jenis_kelamin'];
_fotoUrl = santri['foto_url'];
_loading = false;
});
} catch (e) {
debugPrint('Gagal ambil profil: $e');
ScaffoldMessenger.of(
context,
).showSnackBar(const SnackBar(content: Text('Gagal mengambil profil')));
Navigator.pop(context);
}
}
Future<void> pickImage() async {
final picked = await ImagePicker().pickImage(source: ImageSource.gallery);
if (picked != null) {
setState(() {
_selectedImage = File(picked.path);
});
}
}
Future<void> saveProfile() async {
if (!_formKey.currentState!.validate()) return;
setState(() => _saving = true);
try {
final dio = Dio(
BaseOptions(
headers: {
'Authorization': 'Bearer ${widget.token}',
'Accept': 'application/json',
'Content-Type': 'multipart/form-data',
},
),
);
final formData = FormData.fromMap({
'name': _nameController.text.trim(),
'alamat': _alamatController.text.trim(),
'tempat_lahir': _tempatLahirController.text.trim(),
'tanggal_lahir': _tanggalLahirController.text.trim(),
'jenis_kelamin': _jenisKelamin,
if (_selectedImage != null)
'foto': await MultipartFile.fromFile(
_selectedImage!.path,
filename: _selectedImage!.path.split('/').last,
contentType: MediaType('image', 'jpeg'),
),
});
final response = await dio.post('$baseUrl/santri/me', data: formData);
final message = response.data['message'] ?? 'Profil berhasil diperbarui';
if (context.mounted) {
ScaffoldMessenger.of(
context,
).showSnackBar(SnackBar(content: Text(message)));
Navigator.pop(context, true); // Kembali & beri sinyal refresh
}
} on DioException catch (e) {
final msg =
e.response?.data['message'] ??
e.response?.data.toString() ??
'Gagal memperbarui profil';
ScaffoldMessenger.of(context).showSnackBar(SnackBar(content: Text(msg)));
} finally {
setState(() => _saving = false);
}
}
@override
void dispose() {
_nameController.dispose();
_alamatController.dispose();
_tempatLahirController.dispose();
_tanggalLahirController.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
const fieldSpace = SizedBox(height: 16);
return Scaffold(
appBar: AppBar(title: const Text('Edit Profil')),
body:
_loading
? const Center(child: CircularProgressIndicator())
: SingleChildScrollView(
padding: const EdgeInsets.all(16),
child: Form(
key: _formKey,
child: Column(
children: [
if (_fotoUrl != null && _selectedImage == null)
CircleAvatar(
backgroundImage: NetworkImage(_fotoUrl!),
radius: 45,
),
if (_selectedImage != null)
CircleAvatar(
backgroundImage: FileImage(_selectedImage!),
radius: 45,
),
TextButton.icon(
onPressed: pickImage,
icon: const Icon(Icons.photo),
label: const Text('Ubah Foto'),
),
fieldSpace,
TextFormField(
controller: _nameController,
decoration: const InputDecoration(
labelText: 'Nama Lengkap',
border: OutlineInputBorder(),
),
validator: (val) => val!.isEmpty ? 'Wajib diisi' : null,
),
fieldSpace,
TextFormField(
controller: _alamatController,
decoration: const InputDecoration(
labelText: 'Alamat',
border: OutlineInputBorder(),
),
),
fieldSpace,
TextFormField(
controller: _tempatLahirController,
decoration: const InputDecoration(
labelText: 'Tempat Lahir',
border: OutlineInputBorder(),
),
),
fieldSpace,
TextFormField(
controller: _tanggalLahirController,
decoration: const InputDecoration(
labelText: 'Tanggal Lahir',
hintText: 'YYYY-MM-DD',
border: OutlineInputBorder(),
),
),
fieldSpace,
DropdownButtonFormField<String>(
value: _jenisKelamin,
decoration: const InputDecoration(
labelText: 'Jenis Kelamin',
border: OutlineInputBorder(),
),
items: const [
DropdownMenuItem(
value: 'L',
child: Text('Laki-laki'),
),
DropdownMenuItem(
value: 'P',
child: Text('Perempuan'),
),
],
onChanged: (val) => setState(() => _jenisKelamin = val),
),
const SizedBox(height: 28),
SizedBox(
width: double.infinity,
child: ElevatedButton.icon(
onPressed: _saving ? null : saveProfile,
icon: const Icon(Icons.save),
label:
_saving
? const SizedBox(
width: 20,
height: 20,
child: CircularProgressIndicator(
strokeWidth: 2,
),
)
: const Text('Simpan Perubahan'),
style: ElevatedButton.styleFrom(
padding: const EdgeInsets.symmetric(vertical: 16),
backgroundColor: Colors.green,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(12),
),
),
),
),
],
),
),
),
);
}
}

View File

@ -0,0 +1,139 @@
import 'package:flutter/material.dart';
import 'package:http/http.dart' as http;
import 'dart:convert';
import 'package:monitoring/config.dart';
class KesehatanScreen extends StatefulWidget {
final String token;
const KesehatanScreen({super.key, required this.token});
@override
State<KesehatanScreen> createState() => _KesehatanScreenState();
}
class _KesehatanScreenState extends State<KesehatanScreen> {
List<dynamic> data = [];
bool loading = true;
@override
void initState() {
super.initState();
fetchKesehatan();
}
Future<void> fetchKesehatan() async {
final url = '$baseUrl/kesehatan';
try {
final response = await http.get(
Uri.parse(url),
headers: {
'Accept': 'application/json',
'Authorization': 'Bearer ${widget.token}',
},
);
if (response.statusCode == 200) {
final res = json.decode(response.body);
setState(() {
data = res['data'] ?? [];
loading = false;
});
} else {
debugPrint('Gagal ambil data kesehatan: ${response.statusCode}');
setState(() => loading = false);
}
} catch (e) {
debugPrint('Gagal ambil kesehatan: $e');
setState(() => loading = false);
}
}
Widget _buildCard(Map<String, dynamic> item) {
return Card(
margin: const EdgeInsets.symmetric(horizontal: 16, vertical: 8),
elevation: 3,
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(12)),
child: Padding(
padding: const EdgeInsets.all(16),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
children: [
const Icon(Icons.local_hospital, color: Colors.green),
const SizedBox(width: 8),
Expanded(
child: Text(
item['keluhan'] ?? '-',
style: const TextStyle(
fontSize: 16,
fontWeight: FontWeight.bold,
),
),
),
],
),
const SizedBox(height: 12),
_infoRow('Diagnosis', item['diagnosis']),
_infoRow('Saran', item['saran']),
_infoRow('Kelas', item['kelas_nama']),
_infoRow('Tanggal', _formatDate(item['created_at'])),
],
),
),
);
}
Widget _infoRow(String label, String? value) {
return Padding(
padding: const EdgeInsets.symmetric(vertical: 2),
child: Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
SizedBox(
width: 90,
child: Text(
'$label:',
style: const TextStyle(fontWeight: FontWeight.bold),
),
),
Expanded(
child: Text(
value ?? '-',
style: const TextStyle(color: Colors.black87),
),
),
],
),
);
}
String _formatDate(String? datetime) {
if (datetime == null) return '-';
final date = DateTime.tryParse(datetime);
if (date == null) return '-';
return '${date.day.toString().padLeft(2, '0')}-${date.month.toString().padLeft(2, '0')}-${date.year}';
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text('Catatan Kesehatan')),
body:
loading
? const Center(child: CircularProgressIndicator())
: data.isEmpty
? const Center(child: Text('Tidak ada catatan kesehatan.'))
: RefreshIndicator(
onRefresh: fetchKesehatan,
child: ListView.builder(
physics: const AlwaysScrollableScrollPhysics(),
itemCount: data.length,
itemBuilder: (context, index) => _buildCard(data[index]),
),
),
);
}
}

View File

@ -0,0 +1,147 @@
import 'package:flutter/material.dart';
import 'package:http/http.dart' as http;
import 'dart:convert';
import 'package:intl/intl.dart';
import 'package:monitoring/config.dart';
class NilaiScreen extends StatefulWidget {
final String token;
const NilaiScreen({super.key, required this.token});
@override
State<NilaiScreen> createState() => _NilaiScreenState();
}
class _NilaiScreenState extends State<NilaiScreen> {
List<dynamic> data = [];
bool loading = true;
@override
void initState() {
super.initState();
fetchNilai();
}
Future<void> fetchNilai() async {
final url = '$baseUrl/nilai';
try {
final response = await http.get(
Uri.parse(url),
headers: {
'Accept': 'application/json',
'Authorization': 'Bearer ${widget.token}',
},
);
if (response.statusCode == 200) {
final res = json.decode(response.body);
setState(() {
data = res['data'] ?? [];
loading = false;
});
} else {
debugPrint(
'Gagal ambil nilai: ${response.statusCode} - ${response.body}',
);
setState(() => loading = false);
}
} catch (e) {
debugPrint('Error nilai: $e');
setState(() => loading = false);
}
}
String formatTanggal(String? tanggal) {
if (tanggal == null) return '-';
try {
final date = DateTime.parse(tanggal);
return DateFormat('dd MMM yyyy', 'id_ID').format(date);
} catch (e) {
return tanggal;
}
}
Widget _buildCard(Map<String, dynamic> item) {
return Card(
elevation: 3,
margin: const EdgeInsets.symmetric(horizontal: 16, vertical: 8),
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(12)),
child: Padding(
padding: const EdgeInsets.all(16),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
item['mapel'] ?? '-',
style: const TextStyle(fontSize: 16, fontWeight: FontWeight.bold),
),
const SizedBox(height: 4),
Row(
children: [
Chip(
label: Text(item['jenis_nilai'] ?? '-'),
backgroundColor: Colors.indigo.shade50,
labelStyle: const TextStyle(color: Colors.indigo),
),
const SizedBox(width: 8),
Text(
'Nilai: ${item['nilai']}',
style: const TextStyle(fontSize: 14),
),
],
),
const SizedBox(height: 8),
_infoRow(
Icons.calendar_today,
'Tanggal',
formatTanggal(item['tanggal']),
),
_infoRow(Icons.school, 'Semester', item['semester']),
if ((item['keterangan'] ?? '').toString().isNotEmpty)
_infoRow(Icons.info_outline, 'Catatan', item['keterangan']),
],
),
),
);
}
Widget _infoRow(IconData icon, String label, String? value) {
return Padding(
padding: const EdgeInsets.symmetric(vertical: 2),
child: Row(
children: [
Icon(icon, size: 18, color: Colors.grey.shade600),
const SizedBox(width: 8),
Text('$label: ', style: const TextStyle(fontWeight: FontWeight.bold)),
Expanded(
child: Text(
value ?? '-',
style: const TextStyle(color: Colors.black87),
),
),
],
),
);
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text('Nilai Akademik')),
body:
loading
? const Center(child: CircularProgressIndicator())
: data.isEmpty
? const Center(child: Text('Belum ada data nilai.'))
: RefreshIndicator(
onRefresh: fetchNilai,
child: ListView.builder(
physics: const AlwaysScrollableScrollPhysics(),
itemCount: data.length,
itemBuilder: (context, i) => _buildCard(data[i]),
),
),
);
}
}

View File

@ -0,0 +1,90 @@
// lib/screens/features/pelanggaran_screen.dart
import 'dart:convert';
import 'package:flutter/material.dart';
import 'package:http/http.dart' as http;
class PelanggaranScreen extends StatefulWidget {
final String token;
const PelanggaranScreen({super.key, required this.token});
@override
State<PelanggaranScreen> createState() => _PelanggaranScreenState();
}
class _PelanggaranScreenState extends State<PelanggaranScreen> {
List<dynamic> _pelanggaranList = [];
bool _loading = true;
@override
void initState() {
super.initState();
fetchPelanggaran();
}
Future<void> fetchPelanggaran() async {
try {
final response = await http.get(
Uri.parse("http://10.75.50.24:8000/api/pelanggaran"),
headers: {
"Authorization": "Bearer ${widget.token}",
"Accept": "application/json",
},
);
final data = jsonDecode(response.body);
if (data["success"] == true) {
setState(() {
_pelanggaranList = data["data"];
_loading = false;
});
} else {
throw Exception("Gagal mengambil data");
}
} catch (e) {
setState(() {
_loading = false;
});
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(content: Text("Error: $e")),
);
}
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text("Data Pelanggaran"),
backgroundColor: const Color(0xFF43A047),
),
body: _loading
? const Center(child: CircularProgressIndicator())
: _pelanggaranList.isEmpty
? const Center(child: Text("Tidak ada data pelanggaran."))
: ListView.builder(
itemCount: _pelanggaranList.length,
itemBuilder: (context, index) {
final item = _pelanggaranList[index];
return Card(
margin:
const EdgeInsets.symmetric(horizontal: 12, vertical: 6),
child: ListTile(
// title: Text(item["nama_santri"] ?? "-"),
subtitle: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text("Kelas: ${item["nama_kelas"] ?? '-'}"),
Text("Jenis: ${item["jenis_pelanggaran"] ?? '-'}"),
Text("Hukuman: ${item["hukuman"] ?? '-'}"),
Text("Guru Penegur: ${item["nama_penginput"] ?? '-'}"),
],
),
// trailing: const Icon(Icons.arrow_forward_ios, size: 16),
),
);
},
),
);
}
}

View File

@ -0,0 +1,246 @@
import 'package:flutter/material.dart';
import 'package:dio/dio.dart';
import 'package:monitoring/config.dart';
// import halaman tambah pembayaran jika ada
import 'tambah_pembayaran_screen.dart';
class Pembayaran {
final int id;
final int santriId;
final int? kelasId;
final String tanggal;
final int jumlah;
final String jenis;
final String? keterangan;
final String? bukti;
final String status;
final String? santriName;
Pembayaran({
required this.id,
required this.santriId,
this.kelasId,
required this.tanggal,
required this.jumlah,
required this.jenis,
this.keterangan,
this.bukti,
required this.status,
this.santriName,
});
factory Pembayaran.fromJson(Map<String, dynamic> json) {
return Pembayaran(
id: json['id'],
santriId: json['santri_id'],
kelasId: json['kelas_id'],
tanggal: json['tanggal'],
jumlah: json['jumlah'],
jenis: json['jenis_pembayaran'],
keterangan: json['keterangan'],
bukti: json['bukti_pembayaran'],
status: json['status'],
santriName: json['santri_name'],
);
}
}
class PembayaranScreen extends StatefulWidget {
final String token;
const PembayaranScreen({super.key, required this.token});
@override
State<PembayaranScreen> createState() => _PembayaranScreenState();
}
class _PembayaranScreenState extends State<PembayaranScreen> {
List<Pembayaran> pembayaranList = [];
bool loading = true;
@override
void initState() {
super.initState();
fetchPembayaran();
}
Future<void> fetchPembayaran() async {
try {
final dio = Dio(
BaseOptions(
baseUrl: '$baseUrl',
headers: {
'Accept': 'application/json',
'Authorization': 'Bearer ${widget.token}',
},
),
);
final response = await dio.get('/pembayaran');
final data = response.data as List;
setState(() {
pembayaranList = data.map((e) => Pembayaran.fromJson(e)).toList();
loading = false;
});
} catch (e) {
debugPrint('Error fetch pembayaran: $e');
setState(() => loading = false);
}
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text('Data Pembayaran')),
floatingActionButton: FloatingActionButton(
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(
builder: (_) => TambahPembayaranScreen(token: widget.token),
),
).then((_) => fetchPembayaran()); // refresh setelah kembali
},
backgroundColor: Colors.teal,
child: const Icon(Icons.add),
),
body:
loading
? const Center(child: CircularProgressIndicator())
: pembayaranList.isEmpty
? const Center(child: Text('Belum ada data pembayaran'))
: ListView.builder(
padding: const EdgeInsets.all(12),
itemCount: pembayaranList.length,
itemBuilder: (context, index) {
final bayar = pembayaranList[index];
return Card(
elevation: 2,
margin: const EdgeInsets.only(bottom: 12),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10),
),
child: Padding(
padding: const EdgeInsets.all(16),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
bayar.jenis,
style: const TextStyle(
fontWeight: FontWeight.bold,
fontSize: 16,
),
),
const SizedBox(height: 4),
Text('Tanggal: ${bayar.tanggal}'),
Text('Jumlah: Rp${bayar.jumlah}'),
if (bayar.keterangan != null)
Text('Keterangan: ${bayar.keterangan}'),
Text('Status: ${bayar.status}'),
if (bayar.bukti != null)
Padding(
padding: const EdgeInsets.only(top: 8),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const Text(
'Bukti Pembayaran:',
style: TextStyle(
fontWeight: FontWeight.bold,
),
),
const SizedBox(height: 8),
if (bayar.bukti != null)
SizedBox(
width: double.infinity,
child: ElevatedButton.icon(
onPressed: () {
showDialog(
context: context,
builder:
(_) => AlertDialog(
title: const Text(
'Bukti Pembayaran',
),
content: ClipRRect(
borderRadius:
BorderRadius.circular(
8,
),
child: Image.network(
bayar.bukti!,
fit: BoxFit.cover,
errorBuilder:
(
context,
error,
stackTrace,
) => const Text(
'Gagal memuat gambar',
style: TextStyle(
color: Colors.red,
),
),
loadingBuilder: (
context,
child,
loadingProgress,
) {
if (loadingProgress ==
null)
return child;
return const SizedBox(
height: 100,
child: Center(
child:
CircularProgressIndicator(),
),
);
},
),
),
actions: [
TextButton(
onPressed:
() => Navigator.pop(
context,
),
child: const Text(
'Tutup',
),
),
],
),
);
},
icon: const Icon(
Icons.image,
color: Colors.white,
),
label: const Text(
'Lihat Bukti Pembayaran',
),
style: ElevatedButton.styleFrom(
backgroundColor: Colors.teal,
foregroundColor: Colors.white,
padding: const EdgeInsets.symmetric(
horizontal: 16,
vertical: 10,
),
),
),
),
],
),
),
],
),
),
);
},
),
);
}
}

View File

@ -0,0 +1,124 @@
import 'package:flutter/material.dart';
import 'package:http/http.dart' as http;
import 'dart:convert';
import 'package:monitoring/config.dart';
class PrestasiScreen extends StatefulWidget {
final String token;
const PrestasiScreen({super.key, required this.token});
@override
State<PrestasiScreen> createState() => _PrestasiScreenState();
}
class _PrestasiScreenState extends State<PrestasiScreen> {
List<dynamic> data = [];
bool loading = true;
@override
void initState() {
super.initState();
fetchPrestasi();
}
Future<void> fetchPrestasi() async {
final url = '${baseUrl}/prestasi'; // Ganti jika pakai emulator
try {
final response = await http.get(
Uri.parse(url),
headers: {
'Accept': 'application/json',
'Authorization': 'Bearer ${widget.token}',
},
);
if (response.statusCode == 200) {
final res = json.decode(response.body);
setState(() {
data = res['data'] ?? [];
loading = false;
});
} else {
debugPrint(
'Gagal ambil prestasi: ${response.statusCode} - ${response.body}',
);
setState(() => loading = false);
}
} catch (e) {
debugPrint('Error prestasi: $e');
setState(() => loading = false);
}
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text('Riwayat Prestasi')),
body:
loading
? const Center(child: CircularProgressIndicator())
: data.isEmpty
? const Center(child: Text('Belum ada data prestasi.'))
: ListView.builder(
itemCount: data.length,
padding: const EdgeInsets.all(12),
itemBuilder: (context, index) {
final item = data[index];
return Card(
margin: const EdgeInsets.only(bottom: 12),
elevation: 3,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(12),
),
child: Padding(
padding: const EdgeInsets.all(16),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
children: [
const Icon(
Icons.emoji_events,
color: Colors.amber,
size: 28,
),
const SizedBox(width: 8),
Expanded(
child: Text(
item['nama_prestasi'] ?? '-',
style: const TextStyle(
fontSize: 16,
fontWeight: FontWeight.bold,
),
),
),
],
),
const SizedBox(height: 8),
Text('Jenis: ${item['jenis_prestasi'] ?? '-'}'),
Text('Tingkat: ${item['tingkat'] ?? '-'}'),
Text('Peringkat: ${item['peringkat'] ?? '-'}'),
Text('Tanggal: ${item['tanggal_prestasi'] ?? '-'}'),
if (item['deskripsi'] != null &&
item['deskripsi'].toString().isNotEmpty)
Padding(
padding: const EdgeInsets.only(top: 6),
child: Text(
item['deskripsi'],
style: const TextStyle(color: Colors.black54),
),
),
const Divider(height: 20),
Text('Santri: ${item['santri']?['nama'] ?? '-'}'),
Text('Kelas: ${item['kelas']?['nama_kelas'] ?? '-'}'),
],
),
),
);
},
),
);
}
}

View File

@ -0,0 +1,187 @@
import 'package:flutter/material.dart';
import 'package:http/http.dart' as http;
import 'package:monitoring/config.dart';
import 'dart:convert';
import 'edit_profile_screen.dart';
import 'change_password_screen.dart';
class ProfileScreen extends StatefulWidget {
final String token;
const ProfileScreen({super.key, required this.token});
@override
State<ProfileScreen> createState() => _ProfileScreenState();
}
class _ProfileScreenState extends State<ProfileScreen> {
Map<String, dynamic>? userData;
Map<String, dynamic>? santriData;
String? fotoUrl;
bool loading = true;
@override
void initState() {
super.initState();
fetchProfile();
}
Future<void> fetchProfile() async {
final url = '$baseUrl/santri/me';
try {
final res = await http.get(
Uri.parse(url),
headers: {
'Accept': 'application/json',
'Authorization': 'Bearer ${widget.token}',
},
);
if (res.statusCode == 200) {
final jsonRes = json.decode(res.body);
setState(() {
userData = jsonRes['user'];
santriData = jsonRes['santri'];
fotoUrl = santriData?['foto_url'];
loading = false;
});
} else {
debugPrint('Gagal ambil profil: ${res.body}');
setState(() => loading = false);
}
} catch (e) {
debugPrint('Error profile: $e');
setState(() => loading = false);
}
}
void _logout() {
Navigator.pushNamedAndRemoveUntil(context, '/login', (_) => false);
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Profil'),
actions: [
IconButton(
onPressed: _logout,
icon: const Icon(Icons.logout),
tooltip: 'Logout',
),
],
),
body:
loading
? const Center(child: CircularProgressIndicator())
: userData == null || santriData == null
? const Center(child: Text('Data tidak ditemukan'))
: SingleChildScrollView(
padding: const EdgeInsets.all(16),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Center(
child: CircleAvatar(
radius: 50,
backgroundImage:
fotoUrl != null
? NetworkImage(fotoUrl!)
: const AssetImage('assets/default_profile.png')
as ImageProvider,
backgroundColor: Colors.grey[300],
),
),
const SizedBox(height: 20),
Center(
child: Text(
userData!['name'] ?? '-',
style: const TextStyle(
fontSize: 20,
fontWeight: FontWeight.bold,
),
),
),
const SizedBox(height: 16),
// _buildInfoTile('Username', userData!['username']),
// _buildInfoTile('Email', userData!['email']),
// _buildInfoTile('Role', userData!['role']),
const Divider(),
_buildInfoTile('NIS', santriData!['nis']),
_buildInfoTile('Alamat', santriData!['alamat']),
_buildInfoTile('Tempat Lahir', santriData!['tempat_lahir']),
_buildInfoTile(
'Tanggal Lahir',
santriData!['tanggal_lahir'],
),
_buildInfoTile(
'Jenis Kelamin',
santriData!['jenis_kelamin'] == 'L'
? 'Laki-laki'
: 'Perempuan',
),
const SizedBox(height: 24),
// PERBAIKAN NAVIGASI EDIT
ElevatedButton.icon(
onPressed: () async {
final result = await Navigator.push(
context,
MaterialPageRoute(
builder:
(_) => EditProfileScreen(token: widget.token),
),
);
if (result == true) {
fetchProfile(); // Refresh profil setelah edit
}
},
icon: const Icon(Icons.edit),
label: const Text('Edit Profil'),
),
const SizedBox(height: 12),
ElevatedButton.icon(
style: ElevatedButton.styleFrom(
backgroundColor: Colors.orange,
),
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(
builder:
(_) =>
ChangePasswordScreen(token: widget.token),
),
);
},
icon: const Icon(Icons.lock),
label: const Text('Ganti Password'),
),
],
),
),
);
}
Widget _buildInfoTile(String label, String? value) {
return Padding(
padding: const EdgeInsets.symmetric(vertical: 4),
child: Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
SizedBox(
width: 120,
child: Text(
'$label:',
style: const TextStyle(fontWeight: FontWeight.bold),
),
),
Expanded(child: Text(value ?? '-')),
],
),
);
}
}

View File

@ -0,0 +1,211 @@
import 'dart:io';
import 'package:flutter/material.dart';
import 'package:dio/dio.dart';
import 'package:file_picker/file_picker.dart';
import 'package:monitoring/config.dart';
class TambahPembayaranScreen extends StatefulWidget {
final String token;
const TambahPembayaranScreen({super.key, required this.token});
@override
State<TambahPembayaranScreen> createState() => _TambahPembayaranScreenState();
}
class _TambahPembayaranScreenState extends State<TambahPembayaranScreen> {
final formKey = GlobalKey<FormState>();
String jenis = 'SPP';
String tanggal = '';
int jumlah = 0;
String keterangan = '';
File? bukti;
bool isLoading = false;
Future<void> submit() async {
if (!formKey.currentState!.validate()) return;
if (bukti == null) {
ScaffoldMessenger.of(
context,
).showSnackBar(const SnackBar(content: Text('Bukti belum dipilih')));
return;
}
setState(() => isLoading = true);
final dio = Dio(
BaseOptions(
baseUrl: '$baseUrl',
headers: {
'Accept': 'application/json',
'Authorization': 'Bearer ${widget.token}',
},
),
);
final formData = FormData.fromMap({
'tanggal': tanggal,
'jenis_pembayaran': jenis,
'jumlah': jumlah,
'keterangan': keterangan,
'bukti_pembayaran': await MultipartFile.fromFile(bukti!.path),
});
try {
final response = await dio.post('/pembayaran', data: formData);
if (response.statusCode == 201) {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(content: Text('Pembayaran berhasil dikirim')),
);
Navigator.pop(context);
} else {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(content: Text('Gagal mengirim pembayaran')),
);
}
} catch (e) {
debugPrint('Gagal kirim pembayaran: $e');
ScaffoldMessenger.of(
context,
).showSnackBar(SnackBar(content: Text('Terjadi kesalahan: $e')));
} finally {
setState(() => isLoading = false); // selesai loading
}
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text('Tambah Pembayaran')),
body: Padding(
padding: const EdgeInsets.all(16),
child: Form(
key: formKey,
child: ListView(
children: [
DropdownButtonFormField<String>(
value: jenis,
items: const [
DropdownMenuItem(value: 'SPP', child: Text('SPP')),
DropdownMenuItem(
value: 'Uang Makan',
child: Text('Uang Makan'),
),
DropdownMenuItem(
value: 'Uang Asrama',
child: Text('Uang Asrama'),
),
DropdownMenuItem(
value: 'Uang Kegiatan',
child: Text('Uang Kegiatan'),
),
DropdownMenuItem(
value: 'Uang Seragam',
child: Text('Uang Seragam'),
),
DropdownMenuItem(value: 'Lainnya', child: Text('Lainnya')),
],
onChanged: (val) => setState(() => jenis = val!),
decoration: const InputDecoration(
labelText: 'Jenis Pembayaran',
),
),
const SizedBox(height: 12),
TextFormField(
decoration: const InputDecoration(labelText: 'Jumlah'),
keyboardType: TextInputType.number,
onChanged: (val) => jumlah = int.tryParse(val) ?? 0,
validator:
(val) =>
val == null || val.isEmpty
? 'Jumlah wajib diisi'
: null,
),
const SizedBox(height: 12),
TextFormField(
decoration: const InputDecoration(labelText: 'Tanggal'),
controller: TextEditingController(text: tanggal),
readOnly: true,
onTap: () async {
final picked = await showDatePicker(
context: context,
initialDate: DateTime.now(),
firstDate: DateTime(2022),
lastDate: DateTime(2030),
);
if (picked != null) {
setState(() {
tanggal = picked.toIso8601String().split('T')[0];
});
}
},
validator:
(val) =>
val == null || val.isEmpty
? 'Tanggal wajib diisi'
: null,
),
const SizedBox(height: 12),
TextFormField(
decoration: const InputDecoration(labelText: 'Keterangan'),
maxLines: 2,
onChanged: (val) => keterangan = val,
),
const SizedBox(height: 12),
ElevatedButton.icon(
onPressed: () async {
final picked = await FilePicker.platform.pickFiles(
type: FileType.image,
);
if (picked != null && picked.files.first.path != null) {
setState(() {
bukti = File(picked.files.first.path!);
});
}
},
icon: const Icon(Icons.attach_file),
label: const Text('Pilih Bukti Pembayaran'),
),
if (bukti != null) ...[
const SizedBox(height: 10),
const Text(
'Preview Bukti:',
style: TextStyle(fontWeight: FontWeight.bold),
),
const SizedBox(height: 8),
ClipRRect(
borderRadius: BorderRadius.circular(8),
child: Image.file(
bukti!,
height: 200,
width: double.infinity,
fit: BoxFit.cover,
),
),
],
const SizedBox(height: 24),
ElevatedButton.icon(
onPressed: isLoading ? null : submit,
icon:
isLoading
? const SizedBox(
height: 20,
width: 20,
child: CircularProgressIndicator(
strokeWidth: 2,
color: Colors.white,
),
)
: const Icon(Icons.save),
label: Text(isLoading ? 'Proses...' : 'Kirim Pembayaran'),
style: ElevatedButton.styleFrom(
backgroundColor: Colors.teal,
padding: const EdgeInsets.symmetric(vertical: 14),
),
),
],
),
),
),
);
}
}

View File

@ -0,0 +1,111 @@
import 'dart:convert';
import 'package:flutter/material.dart';
import 'package:http/http.dart' as http;
import '../config.dart'; // baseUrl disimpan di file ini
class ForgotPasswordScreen extends StatefulWidget {
const ForgotPasswordScreen({Key? key}) : super(key: key);
@override
State<ForgotPasswordScreen> createState() => _ForgotPasswordScreenState();
}
class _ForgotPasswordScreenState extends State<ForgotPasswordScreen> {
final _formKey = GlobalKey<FormState>();
final _nisController = TextEditingController();
final _newPassController = TextEditingController();
final _confirmPassController = TextEditingController();
bool _loading = false;
Future<void> _resetPassword() async {
if (!_formKey.currentState!.validate()) return;
setState(() => _loading = true);
final response = await http.post(
Uri.parse('$baseUrl/forgot-password/reset'),
headers: {'Accept': 'application/json'},
body: {
'nis': _nisController.text,
'new_password': _newPassController.text,
'confirm_password': _confirmPassController.text,
},
);
final data = jsonDecode(response.body);
setState(() => _loading = false);
if (response.statusCode == 200) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(content: Text(data['message'])),
);
Navigator.pop(context); // kembali ke halaman login
} else {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(content: Text(data['message'] ?? 'Gagal mereset password')),
);
}
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text("Reset Password")),
body: Padding(
padding: const EdgeInsets.all(20),
child: Form(
key: _formKey,
child: Column(
children: [
TextFormField(
controller: _nisController,
decoration: const InputDecoration(
labelText: "NIS",
border: OutlineInputBorder(),
),
validator: (val) =>
val == null || val.isEmpty ? 'NIS wajib diisi' : null,
),
const SizedBox(height: 16),
TextFormField(
controller: _newPassController,
obscureText: true,
decoration: const InputDecoration(
labelText: "Password Baru",
border: OutlineInputBorder(),
),
validator: (val) =>
val == null || val.length < 6 ? 'Minimal 6 karakter' : null,
),
const SizedBox(height: 16),
TextFormField(
controller: _confirmPassController,
obscureText: true,
decoration: const InputDecoration(
labelText: "Konfirmasi Password",
border: OutlineInputBorder(),
),
validator: (val) =>
val != _newPassController.text ? 'Tidak cocok' : null,
),
const SizedBox(height: 24),
SizedBox(
width: double.infinity,
child: ElevatedButton(
onPressed: _loading ? null : _resetPassword,
child: _loading
? const CircularProgressIndicator(
color: Colors.white,
strokeWidth: 2,
)
: const Text("Reset Password"),
),
)
],
),
),
),
);
}
}

View File

@ -0,0 +1,148 @@
import 'package:flutter/material.dart';
import 'package:shared_preferences/shared_preferences.dart';
import '../main.dart';
import '../widgets/feature_grid.dart';
import 'features/profile_screen.dart';
import 'splash_screen.dart'; // Tambahkan ini
class HomeScreen extends StatefulWidget {
final String token;
final Map<String, dynamic> user;
const HomeScreen({super.key, required this.token, required this.user});
@override
State<HomeScreen> createState() => _HomeScreenState();
}
class _HomeScreenState extends State<HomeScreen> {
void logout() async {
final prefs = await SharedPreferences.getInstance();
await prefs.remove('token');
await prefs.remove('user');
if (!mounted) return; // Hindari error context async
Navigator.pushAndRemoveUntil(
context,
MaterialPageRoute(
builder:
(_) => SplashScreen(
onLoginSuccess: (token, user) {
Navigator.pushReplacement(
navigatorKey.currentContext!,
MaterialPageRoute(
builder: (_) => HomeScreen(token: token, user: user),
),
);
},
),
),
(route) => false,
);
}
Widget buildBanner(String name) {
return Container(
margin: const EdgeInsets.symmetric(horizontal: 16),
padding: const EdgeInsets.all(16),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(20),
gradient: const LinearGradient(
colors: [Color(0xFFA5D6A7), Color(0xFF66BB6A)],
begin: Alignment.topLeft,
end: Alignment.bottomRight,
),
),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const Text(
'Monas SMA Bina Insan Mandiri',
style: TextStyle(color: Colors.white70, fontSize: 12),
),
const SizedBox(height: 4),
Text(
'Selamat Datang, $name',
style: const TextStyle(
color: Colors.white,
fontSize: 20,
fontWeight: FontWeight.bold,
),
),
],
),
);
}
@override
Widget build(BuildContext context) {
final name = widget.user['name'] ?? 'Santri';
return Scaffold(
drawer: Drawer(
child: ListView(
padding: EdgeInsets.zero,
children: [
DrawerHeader(
decoration: const BoxDecoration(color: Color(0xFF43A047)),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const Icon(
Icons.account_circle,
size: 64,
color: Colors.white,
),
const SizedBox(height: 8),
Text(
name,
style: const TextStyle(color: Colors.white, fontSize: 18),
),
const Text('Santri', style: TextStyle(color: Colors.white70)),
],
),
),
ListTile(
leading: const Icon(Icons.person),
title: const Text('Profil'),
onTap: () {
Navigator.pop(context);
Navigator.push(
context,
MaterialPageRoute(
builder: (_) => ProfileScreen(token: widget.token),
),
);
},
),
ListTile(
leading: const Icon(Icons.logout),
title: const Text('Logout'),
onTap: () {
Navigator.pop(context);
logout();
},
),
],
),
),
appBar: AppBar(backgroundColor: const Color(0xFF43A047), elevation: 0),
body: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const SizedBox(height: 12),
buildBanner(name),
const SizedBox(height: 20),
Expanded(
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 16),
child: FeatureGrid(token: widget.token),
),
),
],
),
);
}
}

View File

@ -0,0 +1,152 @@
import 'dart:convert';
import 'package:flutter/material.dart';
import 'package:http/http.dart' as http;
import 'package:monitoring/config.dart';
import 'forgot_password_screen.dart';
class LoginScreen extends StatefulWidget {
final Function(String token, Map<String, dynamic> user) onLoginSuccess;
const LoginScreen({super.key, required this.onLoginSuccess});
@override
State<LoginScreen> createState() => _LoginScreenState();
}
class _LoginScreenState extends State<LoginScreen> {
final TextEditingController _usernameController = TextEditingController();
final TextEditingController _passwordController = TextEditingController();
bool _isLoading = false;
String _error = '';
Future<void> login() async {
setState(() {
_isLoading = true;
_error = '';
});
final url = Uri.parse('$baseUrl/login');
final response = await http.post(
url,
headers: {'Accept': 'application/json'},
body: {
'username': _usernameController.text.trim(),
'password': _passwordController.text.trim(),
},
);
setState(() {
_isLoading = false;
});
if (response.statusCode == 200) {
final data = json.decode(response.body);
final token = data['access_token'];
final user = Map<String, dynamic>.from(data['user']);
widget.onLoginSuccess(token, user);
} else {
final data = json.decode(response.body);
setState(() {
_error = data['message'] ?? 'Login gagal';
});
}
}
@override
Widget build(BuildContext context) {
return Scaffold(
body: Container(
decoration: const BoxDecoration(
gradient: LinearGradient(
colors: [Color(0xFF43A047), Color(0xFFFFF176)], // Hijau ke kuning
begin: Alignment.topLeft,
end: Alignment.bottomRight,
),
),
padding: const EdgeInsets.all(16.0),
child: Center(
child: SingleChildScrollView(
child: Card(
elevation: 12,
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(16)),
child: Padding(
padding: const EdgeInsets.all(24.0),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
const Text(
'Login Santri',
style: TextStyle(
fontSize: 28,
fontWeight: FontWeight.bold,
color: Color(0xFF388E3C), // Hijau Tua
),
),
const SizedBox(height: 24),
if (_error.isNotEmpty)
Text(
_error,
style: const TextStyle(color: Colors.red),
),
TextField(
controller: _usernameController,
decoration: const InputDecoration(
labelText: 'Username',
prefixIcon: Icon(Icons.person),
border: OutlineInputBorder(),
),
),
const SizedBox(height: 16),
TextField(
controller: _passwordController,
obscureText: true,
decoration: const InputDecoration(
labelText: 'Password',
prefixIcon: Icon(Icons.lock),
border: OutlineInputBorder(),
),
),
const SizedBox(height: 24),
_isLoading
? const CircularProgressIndicator()
: SizedBox(
width: double.infinity,
child: ElevatedButton(
style: ElevatedButton.styleFrom(
backgroundColor: const Color(0xFF8BC34A), // Hijau Muda
padding: const EdgeInsets.symmetric(vertical: 16),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(8),
),
),
onPressed: login,
child: const Text(
'Login',
style: TextStyle(fontSize: 16, color: Colors.white),
),
),
),
const SizedBox(height: 16),
TextButton(
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(builder: (_) => const ForgotPasswordScreen()),
);
},
child: const Text(
'Lupa Password?',
style: TextStyle(color: Color(0xFF388E3C)),
),
),
],
),
),
),
),
),
),
);
}
}

View File

@ -0,0 +1,121 @@
import 'dart:convert';
import 'package:flutter/material.dart';
import 'package:http/http.dart' as http;
import '../config.dart';
class ResetPasswordScreen extends StatefulWidget {
final int userId;
const ResetPasswordScreen({Key? key, required this.userId}) : super(key: key);
@override
State<ResetPasswordScreen> createState() => _ResetPasswordScreenState();
}
class _ResetPasswordScreenState extends State<ResetPasswordScreen> {
final TextEditingController _passwordController = TextEditingController();
final TextEditingController _confirmController = TextEditingController();
bool _isLoading = false;
Future<void> _resetPassword() async {
final password = _passwordController.text.trim();
final confirmPassword = _confirmController.text.trim();
if (password.isEmpty || confirmPassword.isEmpty) {
_showMessage('Semua kolom harus diisi.');
return;
}
if (password != confirmPassword) {
_showMessage('Password tidak sama.');
return;
}
setState(() => _isLoading = true);
try {
final response = await http.post(
Uri.parse('$baseUrl/forgot-password/reset'),
body: {
'user_id': widget.userId.toString(),
'password': password,
'password_confirmation': confirmPassword,
},
);
final data = jsonDecode(response.body);
if (response.statusCode == 200) {
_showMessage(data['message'] ?? 'Password berhasil diubah');
Navigator.popUntil(context, (route) => route.isFirst); // Kembali ke login
} else {
_showMessage(data['message'] ?? 'Gagal reset password.');
}
} catch (e) {
_showMessage('Gagal menghubungi server.');
} finally {
setState(() => _isLoading = false);
}
}
void _showMessage(String message) {
showDialog(
context: context,
builder: (_) => AlertDialog(
title: const Text('Informasi'),
content: Text(message),
actions: [
TextButton(
onPressed: () => Navigator.pop(context),
child: const Text('OK'),
),
],
),
);
}
@override
void dispose() {
_passwordController.dispose();
_confirmController.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text('Reset Password Baru')),
body: Padding(
padding: const EdgeInsets.all(20.0),
child: Column(
children: [
TextField(
controller: _passwordController,
obscureText: true,
decoration: const InputDecoration(
labelText: 'Password Baru',
border: OutlineInputBorder(),
),
),
const SizedBox(height: 16),
TextField(
controller: _confirmController,
obscureText: true,
decoration: const InputDecoration(
labelText: 'Konfirmasi Password',
border: OutlineInputBorder(),
),
),
const SizedBox(height: 24),
_isLoading
? const CircularProgressIndicator()
: ElevatedButton(
onPressed: _resetPassword,
child: const Text('Reset Password'),
),
],
),
),
);
}
}

View File

@ -0,0 +1,60 @@
import 'dart:convert';
import 'package:flutter/material.dart';
import 'package:monitoring/screens/login_screen.dart';
import 'package:shared_preferences/shared_preferences.dart';
class SplashScreen extends StatefulWidget {
final Function(String token, Map<String, dynamic> user) onLoginSuccess;
const SplashScreen({super.key, required this.onLoginSuccess});
@override
State<SplashScreen> createState() => _SplashScreenState();
}
class _SplashScreenState extends State<SplashScreen> {
bool isLoading = true;
@override
void initState() {
super.initState();
checkLoginStatus();
}
Future<void> checkLoginStatus() async {
final prefs = await SharedPreferences.getInstance();
final token = prefs.getString('token');
final userJson = prefs.getString('user');
if (token != null && userJson != null) {
final user = jsonDecode(userJson);
widget.onLoginSuccess(token, Map<String, dynamic>.from(user));
} else {
setState(() => isLoading = false);
}
}
@override
Widget build(BuildContext context) {
if (isLoading) {
return const Scaffold(body: Center(child: CircularProgressIndicator()));
}
return Scaffold(
appBar: AppBar(title: const Text('Santri App')),
body: Center(
child: ElevatedButton(
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(
builder: (_) => LoginScreen(onLoginSuccess: widget.onLoginSuccess),
),
);
},
child: const Text('Login as Santri'),
),
),
);
}
}

View File

@ -0,0 +1,113 @@
import 'package:flutter/material.dart';
import 'package:dio/dio.dart';
import 'package:monitoring/config.dart';
class Berita {
final int id;
final String judul;
final String? gambarUrl;
Berita({required this.id, required this.judul, this.gambarUrl});
factory Berita.fromJson(Map<String, dynamic> json) {
return Berita(
id: json['id'],
judul: json['judul'] ?? '',
gambarUrl: json['gambar_url'],
);
}
}
class BeritaCarousel extends StatefulWidget {
const BeritaCarousel({
super.key,
required this.token,
required bool isCircleStyle,
});
final String token;
@override
State<BeritaCarousel> createState() => _BeritaCarouselState();
}
class _BeritaCarouselState extends State<BeritaCarousel> {
List<Berita> _beritaList = [];
bool _loading = true;
@override
void initState() {
super.initState();
fetchBerita();
}
Future<void> fetchBerita() async {
try {
final dio = Dio(
BaseOptions(
baseUrl: '$baseUrl',
headers: {
'Accept': 'application/json',
'Authorization': 'Bearer ${widget.token}',
},
),
);
final response = await dio.get('/berita/published');
final List raw = response.data['data'];
setState(() {
_beritaList = raw.map((e) => Berita.fromJson(e)).toList();
_loading = false;
});
} catch (e) {
debugPrint('Gagal ambil berita: $e');
setState(() => _loading = false);
}
}
@override
Widget build(BuildContext context) {
if (_loading) return const Center(child: CircularProgressIndicator());
if (_beritaList.isEmpty) return const Text('Tidak ada berita.');
return SizedBox(
height: 160,
child: PageView.builder(
itemCount: _beritaList.length,
controller: PageController(viewportFraction: 0.85),
itemBuilder: (context, index) {
final berita = _beritaList[index];
return Container(
margin: const EdgeInsets.symmetric(horizontal: 8),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(12),
image: DecorationImage(
image:
berita.gambarUrl != null
? NetworkImage(berita.gambarUrl!)
: const AssetImage('assets/404.png') as ImageProvider,
fit: BoxFit.cover,
),
),
child: Container(
alignment: Alignment.bottomLeft,
padding: const EdgeInsets.all(12),
decoration: BoxDecoration(
color: Colors.black54,
borderRadius: const BorderRadius.only(
bottomLeft: Radius.circular(12),
bottomRight: Radius.circular(12),
),
),
child: Text(
berita.judul,
style: const TextStyle(color: Colors.white, fontSize: 14),
maxLines: 2,
overflow: TextOverflow.ellipsis,
),
),
);
},
),
);
}
}

View File

@ -0,0 +1,122 @@
import 'package:flutter/material.dart';
import '../screens/features/absensi_screen.dart';
import '../screens/features/nilai_screen.dart';
import '../screens/features/kesehatan_screen.dart';
import '../screens/features/prestasi_screen.dart';
import '../screens/features/pelanggaran_screen.dart';
import '../screens/features/berita_screen.dart';
import '../screens/features/alumni_screen.dart';
import '../screens/features/pembayaran_screen.dart';
class FeatureGrid extends StatelessWidget {
final String token;
const FeatureGrid({super.key, required this.token});
final List<_FeatureItem> _items = const [
_FeatureItem('Absensi', Icons.how_to_reg),
_FeatureItem('Nilai', Icons.grade),
_FeatureItem('Kesehatan', Icons.local_hospital),
_FeatureItem('Prestasi', Icons.emoji_events),
_FeatureItem('Pelanggaran', Icons.report),
_FeatureItem('Berita', Icons.article),
_FeatureItem('Alumni', Icons.people),
_FeatureItem('Pembayaran', Icons.attach_money),
];
@override
Widget build(BuildContext context) {
return GridView.builder(
itemCount: _items.length,
gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: 4,
crossAxisSpacing: 12,
mainAxisSpacing: 12,
),
itemBuilder: (context, index) {
final item = _items[index];
return GestureDetector(
onTap: () {
Widget? destination;
switch (item.label) {
case 'Absensi':
destination = AbsensiScreen(token: token);
break;
case 'Nilai':
destination = NilaiScreen(token: token);
break;
case 'Kesehatan':
destination = KesehatanScreen(token: token);
break;
case 'Prestasi':
destination = PrestasiScreen(token: token);
break;
case 'Pelanggaran':
destination = PelanggaranScreen(token: token);
break;
case 'Berita':
destination = BeritaScreen(token: token);
break;
case 'Alumni':
destination = AlumniScreen(token: token);
break;
case 'Pembayaran':
destination = PembayaranScreen(token: token);
break;
}
if (destination != null) {
Navigator.push(
context,
MaterialPageRoute(builder: (_) => destination!),
);
}
},
child: Container(
decoration: BoxDecoration(
gradient: const LinearGradient(
colors: [Color(0xFF43A047), Color(0xFFFFEB3B)],
begin: Alignment.topLeft,
end: Alignment.bottomRight,
),
borderRadius: BorderRadius.circular(16),
boxShadow: [
BoxShadow(
color: Colors.black.withOpacity(0.08),
blurRadius: 8,
offset: const Offset(0, 4),
),
],
),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(item.icon, size: 32, color: Colors.white),
const SizedBox(height: 8),
Text(
item.label,
style: const TextStyle(
fontSize: 12,
fontWeight: FontWeight.bold,
color: Colors.white,
),
textAlign: TextAlign.center,
),
],
),
),
);
},
);
}
}
class _FeatureItem {
final String label;
final IconData icon;
const _FeatureItem(this.label, this.icon);
}

1
monitoring/linux/.gitignore vendored Normal file
View File

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

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 "monitoring")
# The unique GTK application identifier for this application. See:
# https://wiki.gnome.org/HowDoI/ChooseApplicationID
set(APPLICATION_ID "com.example.monitoring")
# 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,23 @@
//
// Generated file. Do not edit.
//
// clang-format off
#include "generated_plugin_registrant.h"
#include <file_selector_linux/file_selector_plugin.h>
#include <flutter_secure_storage_linux/flutter_secure_storage_linux_plugin.h>
#include <url_launcher_linux/url_launcher_plugin.h>
void fl_register_plugins(FlPluginRegistry* registry) {
g_autoptr(FlPluginRegistrar) file_selector_linux_registrar =
fl_plugin_registry_get_registrar_for_plugin(registry, "FileSelectorPlugin");
file_selector_plugin_register_with_registrar(file_selector_linux_registrar);
g_autoptr(FlPluginRegistrar) flutter_secure_storage_linux_registrar =
fl_plugin_registry_get_registrar_for_plugin(registry, "FlutterSecureStorageLinuxPlugin");
flutter_secure_storage_linux_plugin_register_with_registrar(flutter_secure_storage_linux_registrar);
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,26 @@
#
# Generated file, do not edit.
#
list(APPEND FLUTTER_PLUGIN_LIST
file_selector_linux
flutter_secure_storage_linux
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}")

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);
}

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