Skip to content

Commit

Permalink
Merge pull request #193 from fleetimee/refactor_submit_finishing
Browse files Browse the repository at this point in the history
🔧 chore(assets_cleaner.yaml): add configuration options for excluding…
  • Loading branch information
fleetimee authored Apr 21, 2023
2 parents 822eeba + 620a432 commit c4679c7
Show file tree
Hide file tree
Showing 21 changed files with 989 additions and 671 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: "3.7.9"
flutter-version: "3.7.12"
channel: "stable"

# Decode file KEYSTORE_JKS_PROD yang berbentuk base64 dan mengubahnya menjadi keystore.jks
Expand All @@ -48,9 +48,6 @@ jobs:
# sed -i 's/99.99.99+99/'$GIT_TAG_NAME'/g' pubspec.yaml|
# echo "Tag used version:"$GIT_TAG_NAME

- name: Bump Fluter dependencies
run: flutter update-packages --force-upgrade

# Step ini digunakan untuk menginstall dependency yang dibutuhkan
- name: Pub Get Packages
run: flutter pub get
Expand Down
Binary file added assets/images/home/list_response.zip
Binary file not shown.
14 changes: 14 additions & 0 deletions assets_cleaner.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
config:
# If you want to exclude specific
# extension
exclude-extension:
# - jpg # Uncomment this if you want to use
# - png # Uncomment this if you want to use
- ttf

# If you want to exclude specific
# file from assets
exclude-file:
# - /assets/images/banner_upgrade.png # Uncomment this if you want to use
# - /assets/images/logo.png # Uncomment this if you want to use
- /assets/fonts/times-new-roman.ttf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import 'package:akm/app/common/style.dart';
import 'package:flutter/material.dart';

// 📦 Package imports:
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
import 'package:get/get.dart';
import 'package:getwidget/getwidget.dart';

// 🌎 Project imports:
import 'package:akm/app/modules/home/controllers/home_controller.dart';
Expand All @@ -25,8 +25,8 @@ class ReviewerDeviceInformation extends StatelessWidget {
child: Row(
children: [
const Icon(
FontAwesomeIcons.check,
color: GFColors.SUCCESS,
FontAwesomeIcons.android,
color: primaryColor,
),
const SizedBox(
width: 8,
Expand Down Expand Up @@ -61,7 +61,7 @@ class ReviewerDeviceInformation extends StatelessWidget {
)
: const Icon(
FontAwesomeIcons.locationDot,
color: GFColors.DANGER,
color: primaryColor,
)),
const SizedBox(
width: 8,
Expand Down Expand Up @@ -113,8 +113,8 @@ class ReviewerDeviceInformation extends StatelessWidget {
),
)
: const Icon(
FontAwesomeIcons.building,
color: GFColors.INFO,
FontAwesomeIcons.locationArrow,
color: primaryColor,
)),
const SizedBox(
width: 8,
Expand Down
Loading

1 comment on commit c4679c7

@vercel
Copy link

@vercel vercel bot commented on c4679c7 Apr 21, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.