├── .flutter-plugins-dependencies ├── .gitignore ├── .metadata ├── MyApplication ├── .gitignore ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── myapplication │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── myapplication │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── myapplication │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── README.md ├── android ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── app │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── build.gradle │ ├── google-services.json │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── companycoba │ │ │ │ └── dypos │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── key.properties └── settings.gradle ├── assets ├── fonts │ └── Work_Sans │ │ ├── WorkSans-Black.ttf │ │ ├── WorkSans-Bold.ttf │ │ ├── WorkSans-ExtraBold.ttf │ │ ├── WorkSans-ExtraLight.ttf │ │ ├── WorkSans-Light.ttf │ │ ├── WorkSans-Medium.ttf │ │ ├── WorkSans-Regular.ttf │ │ ├── WorkSans-SemiBold.ttf │ │ └── WorkSans-Thin.ttf └── img │ ├── complete_payment.png │ ├── item.png │ ├── login_logo.png │ ├── not_active.png │ └── person.png ├── flutter_01.png ├── ios ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── flutter_export_environment.sh ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ └── contents.xcworkspacedata └── Runner │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── main.m ├── keytool ├── lib ├── Widget │ └── Speed_dial.dart ├── components │ ├── Buttons │ │ ├── roundedButton.dart │ │ └── textButton.dart │ ├── TextFields │ │ └── inputField.dart │ └── infinite_listview.dart ├── main.dart ├── style │ ├── styles.dart │ └── theme.dart ├── succesfull.dart ├── theme │ └── style.dart ├── ui │ ├── businessinfo.dart │ ├── cart.dart │ ├── cashier │ │ ├── add_pelayan.dart │ │ ├── detail_pelayan.dart │ │ ├── master_pelayan.dart │ │ └── show_pelayan.dart │ ├── drawerBar.dart │ ├── editProfile.dart │ ├── formKey.dart │ ├── home.dart │ ├── item │ │ ├── detailScreen.dart │ │ ├── master_item.dart │ │ ├── showItem.dart │ │ ├── tambahItem.dart │ │ └── tambahstok.dart │ ├── kategori │ │ ├── add.dart │ │ ├── detail.dart │ │ ├── insertKategori.dart │ │ ├── master.dart │ │ ├── master_kategori.dart │ │ └── show.dart │ ├── login_page.dart │ ├── main.dart │ ├── master_member.dart │ ├── member │ │ ├── detailMember.dart │ │ ├── master.dart │ │ └── show.dart │ ├── midtrans.dart │ ├── print.dart │ ├── promo │ │ ├── detailPromo.dart │ │ ├── insertPromo.dart │ │ ├── masterPromo.dart │ │ ├── showPromo.dart │ │ └── spreadPromo.dart │ ├── retur_pembelian │ │ ├── detailStok.dart │ │ ├── insert.dart │ │ ├── list.dart │ │ ├── master.dart │ │ └── show.dart │ ├── retur_penjualan │ │ ├── insertRetur.dart │ │ ├── list.dart │ │ ├── listReturItem.dart │ │ ├── master.dart │ │ └── show.dart │ ├── reviews.dart │ ├── supplier │ │ ├── addSupplier.dart │ │ ├── detailSupplier.dart │ │ ├── master_supplier.dart │ │ ├── showSupplier.dart │ │ └── updateSupplier.dart │ ├── table.html │ ├── test.dart │ ├── transaction │ │ ├── master.dart │ │ └── show.dart │ └── transaksi.dart └── utils │ └── bubble_indication_painter.dart ├── new ├── pubspec.lock ├── pubspec.yaml ├── res └── values │ └── strings_en.arb └── runApp(new /.flutter-plugins-dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/.flutter-plugins-dependencies -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/.metadata -------------------------------------------------------------------------------- /MyApplication/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/.gitignore -------------------------------------------------------------------------------- /MyApplication/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/.project -------------------------------------------------------------------------------- /MyApplication/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /MyApplication/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /MyApplication/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/app/build.gradle -------------------------------------------------------------------------------- /MyApplication/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/app/proguard-rules.pro -------------------------------------------------------------------------------- /MyApplication/app/src/androidTest/java/com/example/myapplication/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/app/src/androidTest/java/com/example/myapplication/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /MyApplication/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /MyApplication/app/src/main/java/com/example/myapplication/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/app/src/main/java/com/example/myapplication/MainActivity.java -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /MyApplication/app/src/test/java/com/example/myapplication/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/app/src/test/java/com/example/myapplication/ExampleUnitTest.java -------------------------------------------------------------------------------- /MyApplication/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/build.gradle -------------------------------------------------------------------------------- /MyApplication/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/gradle.properties -------------------------------------------------------------------------------- /MyApplication/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /MyApplication/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /MyApplication/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/gradlew -------------------------------------------------------------------------------- /MyApplication/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/MyApplication/gradlew.bat -------------------------------------------------------------------------------- /MyApplication/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/README.md -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/android/.project -------------------------------------------------------------------------------- /android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/android/app/.classpath -------------------------------------------------------------------------------- /android/app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/android/app/.project -------------------------------------------------------------------------------- /android/app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/android/app/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/android/app/google-services.json -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/companycoba/dypos/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/android/app/src/main/java/companycoba/dypos/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/key.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/android/key.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/fonts/Work_Sans/WorkSans-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/assets/fonts/Work_Sans/WorkSans-Black.ttf -------------------------------------------------------------------------------- /assets/fonts/Work_Sans/WorkSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/assets/fonts/Work_Sans/WorkSans-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Work_Sans/WorkSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/assets/fonts/Work_Sans/WorkSans-ExtraBold.ttf -------------------------------------------------------------------------------- /assets/fonts/Work_Sans/WorkSans-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/assets/fonts/Work_Sans/WorkSans-ExtraLight.ttf -------------------------------------------------------------------------------- /assets/fonts/Work_Sans/WorkSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/assets/fonts/Work_Sans/WorkSans-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/Work_Sans/WorkSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/assets/fonts/Work_Sans/WorkSans-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/Work_Sans/WorkSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/assets/fonts/Work_Sans/WorkSans-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Work_Sans/WorkSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/assets/fonts/Work_Sans/WorkSans-SemiBold.ttf -------------------------------------------------------------------------------- /assets/fonts/Work_Sans/WorkSans-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/assets/fonts/Work_Sans/WorkSans-Thin.ttf -------------------------------------------------------------------------------- /assets/img/complete_payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/assets/img/complete_payment.png -------------------------------------------------------------------------------- /assets/img/item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/assets/img/item.png -------------------------------------------------------------------------------- /assets/img/login_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/assets/img/login_logo.png -------------------------------------------------------------------------------- /assets/img/not_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/assets/img/not_active.png -------------------------------------------------------------------------------- /assets/img/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/assets/img/person.png -------------------------------------------------------------------------------- /flutter_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/flutter_01.png -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/flutter_export_environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Flutter/flutter_export_environment.sh -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/ios/Runner/main.m -------------------------------------------------------------------------------- /keytool: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Widget/Speed_dial.dart: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/components/Buttons/roundedButton.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/components/Buttons/roundedButton.dart -------------------------------------------------------------------------------- /lib/components/Buttons/textButton.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/components/Buttons/textButton.dart -------------------------------------------------------------------------------- /lib/components/TextFields/inputField.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/components/TextFields/inputField.dart -------------------------------------------------------------------------------- /lib/components/infinite_listview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/components/infinite_listview.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/style/styles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/style/styles.dart -------------------------------------------------------------------------------- /lib/style/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/style/theme.dart -------------------------------------------------------------------------------- /lib/succesfull.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/succesfull.dart -------------------------------------------------------------------------------- /lib/theme/style.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/theme/style.dart -------------------------------------------------------------------------------- /lib/ui/businessinfo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/businessinfo.dart -------------------------------------------------------------------------------- /lib/ui/cart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/cart.dart -------------------------------------------------------------------------------- /lib/ui/cashier/add_pelayan.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/cashier/add_pelayan.dart -------------------------------------------------------------------------------- /lib/ui/cashier/detail_pelayan.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/cashier/detail_pelayan.dart -------------------------------------------------------------------------------- /lib/ui/cashier/master_pelayan.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/cashier/master_pelayan.dart -------------------------------------------------------------------------------- /lib/ui/cashier/show_pelayan.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/cashier/show_pelayan.dart -------------------------------------------------------------------------------- /lib/ui/drawerBar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/drawerBar.dart -------------------------------------------------------------------------------- /lib/ui/editProfile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/editProfile.dart -------------------------------------------------------------------------------- /lib/ui/formKey.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/ui/home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/home.dart -------------------------------------------------------------------------------- /lib/ui/item/detailScreen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/item/detailScreen.dart -------------------------------------------------------------------------------- /lib/ui/item/master_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/item/master_item.dart -------------------------------------------------------------------------------- /lib/ui/item/showItem.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/item/showItem.dart -------------------------------------------------------------------------------- /lib/ui/item/tambahItem.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/item/tambahItem.dart -------------------------------------------------------------------------------- /lib/ui/item/tambahstok.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/item/tambahstok.dart -------------------------------------------------------------------------------- /lib/ui/kategori/add.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/kategori/add.dart -------------------------------------------------------------------------------- /lib/ui/kategori/detail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/kategori/detail.dart -------------------------------------------------------------------------------- /lib/ui/kategori/insertKategori.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/kategori/insertKategori.dart -------------------------------------------------------------------------------- /lib/ui/kategori/master.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/kategori/master.dart -------------------------------------------------------------------------------- /lib/ui/kategori/master_kategori.dart: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ui/kategori/show.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/kategori/show.dart -------------------------------------------------------------------------------- /lib/ui/login_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/login_page.dart -------------------------------------------------------------------------------- /lib/ui/main.dart: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ui/master_member.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/master_member.dart -------------------------------------------------------------------------------- /lib/ui/member/detailMember.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/member/detailMember.dart -------------------------------------------------------------------------------- /lib/ui/member/master.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/member/master.dart -------------------------------------------------------------------------------- /lib/ui/member/show.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/member/show.dart -------------------------------------------------------------------------------- /lib/ui/midtrans.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/midtrans.dart -------------------------------------------------------------------------------- /lib/ui/print.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/print.dart -------------------------------------------------------------------------------- /lib/ui/promo/detailPromo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/promo/detailPromo.dart -------------------------------------------------------------------------------- /lib/ui/promo/insertPromo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/promo/insertPromo.dart -------------------------------------------------------------------------------- /lib/ui/promo/masterPromo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/promo/masterPromo.dart -------------------------------------------------------------------------------- /lib/ui/promo/showPromo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/promo/showPromo.dart -------------------------------------------------------------------------------- /lib/ui/promo/spreadPromo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/promo/spreadPromo.dart -------------------------------------------------------------------------------- /lib/ui/retur_pembelian/detailStok.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/retur_pembelian/detailStok.dart -------------------------------------------------------------------------------- /lib/ui/retur_pembelian/insert.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/retur_pembelian/insert.dart -------------------------------------------------------------------------------- /lib/ui/retur_pembelian/list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/retur_pembelian/list.dart -------------------------------------------------------------------------------- /lib/ui/retur_pembelian/master.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/retur_pembelian/master.dart -------------------------------------------------------------------------------- /lib/ui/retur_pembelian/show.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/retur_pembelian/show.dart -------------------------------------------------------------------------------- /lib/ui/retur_penjualan/insertRetur.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/retur_penjualan/insertRetur.dart -------------------------------------------------------------------------------- /lib/ui/retur_penjualan/list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/retur_penjualan/list.dart -------------------------------------------------------------------------------- /lib/ui/retur_penjualan/listReturItem.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/retur_penjualan/listReturItem.dart -------------------------------------------------------------------------------- /lib/ui/retur_penjualan/master.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/retur_penjualan/master.dart -------------------------------------------------------------------------------- /lib/ui/retur_penjualan/show.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/retur_penjualan/show.dart -------------------------------------------------------------------------------- /lib/ui/reviews.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/reviews.dart -------------------------------------------------------------------------------- /lib/ui/supplier/addSupplier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/supplier/addSupplier.dart -------------------------------------------------------------------------------- /lib/ui/supplier/detailSupplier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/supplier/detailSupplier.dart -------------------------------------------------------------------------------- /lib/ui/supplier/master_supplier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/supplier/master_supplier.dart -------------------------------------------------------------------------------- /lib/ui/supplier/showSupplier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/supplier/showSupplier.dart -------------------------------------------------------------------------------- /lib/ui/supplier/updateSupplier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/supplier/updateSupplier.dart -------------------------------------------------------------------------------- /lib/ui/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/table.html -------------------------------------------------------------------------------- /lib/ui/test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/test.dart -------------------------------------------------------------------------------- /lib/ui/transaction/master.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/transaction/master.dart -------------------------------------------------------------------------------- /lib/ui/transaction/show.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/transaction/show.dart -------------------------------------------------------------------------------- /lib/ui/transaksi.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/ui/transaksi.dart -------------------------------------------------------------------------------- /lib/utils/bubble_indication_painter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/lib/utils/bubble_indication_painter.dart -------------------------------------------------------------------------------- /new: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchice/Dypos/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /res/values/strings_en.arb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runApp(new: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------