Skip to content
This repository has been archived by the owner on May 31, 2022. It is now read-only.

Commit

Permalink
v1.0.1: Update app theme color and icon.
Browse files Browse the repository at this point in the history
  • Loading branch information
ekaputra07 committed Jun 11, 2019
1 parent bcc90a3 commit 560fd5b
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Expand Up @@ -44,8 +44,8 @@ android {
minSdkVersion 21
targetSdkVersion 27
multiDexEnabled true
versionCode 2 //flutterVersionCode.toInteger()
versionName "1.0.0" // flutterVersionName
versionCode 4 //flutterVersionCode.toInteger()
versionName "1.0.1" // flutterVersionName
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}

Expand Down
Binary file modified android/app/src/main/res/mipmap-hdpi/ic_launcher.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified android/app/src/main/res/mipmap-ldpi/ic_launcher.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified android/app/src/main/res/mipmap-mdpi/ic_launcher.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified appstore/gatrabali.xd
Binary file not shown.
Binary file modified assets/images/icon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions lib/about.dart
Expand Up @@ -17,7 +17,7 @@ class About extends StatelessWidget {
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.center,
children: [
Image.asset('assets/images/icon.png', width: 50, height: 50),
Image.asset('assets/images/icon.png', width: 80, height: 80),
SizedBox(height: 20),
Text(
'Gatra Bali adalah sebuah aplikasi yang merangkum berita dari berbagai sumber berita online, ditampilkan sedemikian rupa supaya mudah dan menyenangkan dibaca.',
Expand Down Expand Up @@ -51,7 +51,7 @@ class About extends StatelessWidget {
child: Text(
'https://github.com/apps4bali/gatrabali-app.',
textAlign: TextAlign.center,
style: TextStyle(fontSize: 13.0, color: Colors.blueGrey),
style: TextStyle(fontSize: 13.0, color: Colors.green),
),
onTap: () {
launch('https://github.com/apps4bali/gatrabali-app',
Expand All @@ -69,7 +69,7 @@ class About extends StatelessWidget {
height: 20.0,
),
Text(
'Gatra Bali v1.0.0',
'Gatra Bali v1.0.1',
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 13.0,
Expand Down
2 changes: 1 addition & 1 deletion lib/main.dart
Expand Up @@ -23,7 +23,7 @@ class MyApp extends StatelessWidget {
Widget build(BuildContext context) {
return MaterialApp(
title: 'Gatra Bali',
theme: ThemeData(primarySwatch: Colors.blueGrey),
theme: ThemeData(primarySwatch: Colors.green),
onGenerateRoute: _generateRoute,
home: ScopedModel<News>(
model: _model,
Expand Down
8 changes: 4 additions & 4 deletions lib/profile.dart
Expand Up @@ -41,7 +41,7 @@ class _ProfileState extends State<Profile> {
setState(() {
_user = user;
_isLoggedIn = true;
_toast(ctx, "Login dengan Google berhasil", Colors.blueGrey);
_toast(ctx, "Login dengan Google berhasil", Colors.green);
if (widget.closeAfterLogin) {
Navigator.of(ctx).pop(true);
}
Expand All @@ -57,7 +57,7 @@ class _ProfileState extends State<Profile> {
setState(() {
_user = user;
_isLoggedIn = true;
_toast(ctx, "Login dengan Facebook berhasil", Colors.blueGrey);
_toast(ctx, "Login dengan Facebook berhasil", Colors.green);
if (widget.closeAfterLogin) {
Navigator.of(ctx).pop(true);
}
Expand Down Expand Up @@ -138,7 +138,7 @@ class _ProfileState extends State<Profile> {
Text(
'Terima kasih telah membuat akun di aplikasi Gatra Bali. Dengan membuat akun anda bisa menyimpan/bookmark berita dan otomatis tersingkronisasi dengan perangkat lain apabila anda login dengan akun yang sama.',
textAlign: TextAlign.center,
style: TextStyle(fontSize: 14.0, color: Colors.blueGrey),
style: TextStyle(fontSize: 14.0, color: Colors.green),
),
SizedBox(height: 30.0),
logoutButton
Expand Down Expand Up @@ -186,7 +186,7 @@ class _ProfileState extends State<Profile> {
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.center,
children: [
Image.asset('assets/images/icon.png', width: 50, height: 50),
Image.asset('assets/images/icon.png', width: 80, height: 80),
SizedBox(height: 30.0),
Text(
'Untuk dapat menyimpan berita silahkan login dengan salah satu dari layanan media sosial berikut ini:',
Expand Down
6 changes: 3 additions & 3 deletions lib/single_news.dart
Expand Up @@ -147,7 +147,7 @@ class _SingleNews extends State<SingleNews> {
padding: EdgeInsets.all(20.0),
defaultTextStyle: TextStyle(fontSize: 16),
linkStyle: const TextStyle(
color: Colors.blueGrey,
color: Colors.green,
),
onLinkTap: (url) {
Toast.show(
Expand All @@ -172,7 +172,7 @@ class _SingleNews extends State<SingleNews> {
return Container(
width: double.infinity,
height: 250.0,
color: Colors.blueGrey,
color: Colors.green,
);
}
}
Expand Down Expand Up @@ -231,7 +231,7 @@ class _SingleNews extends State<SingleNews> {
child: ListTile(
title: Text("Sumber:"),
subtitle:
Text(_entry.url, style: TextStyle(color: Colors.blueGrey)),
Text(_entry.url, style: TextStyle(color: Colors.green)),
)));
}
}
2 changes: 1 addition & 1 deletion lib/widgets/char_thumbnail.dart
Expand Up @@ -9,7 +9,7 @@ class CharThumbnail extends StatelessWidget {

CharThumbnail(
{@required this.char,
this.color = Colors.blueGrey,
this.color = Colors.green,
this.width = 50.0,
this.height = 50.0,
this.fontSize = 28.0});
Expand Down
2 changes: 1 addition & 1 deletion lib/widgets/single_news_card.dart
Expand Up @@ -55,7 +55,7 @@ class SingleNewsCard extends StatelessWidget {
return Container(
width: double.infinity,
height: 150.0,
color: Colors.blueGrey,
color: Colors.green,
);
}
}
Expand Down

0 comments on commit 560fd5b

Please sign in to comment.