Monday, 5 August 2019

Gatra Bali news reader made using Flutter

Gatra Bali news reader

Gatra Bali - Balinese News Reader

Balinese news reader app. Now available on Google Play:
Gatra Bali menyajikan berita Bali terkini yang bersumber dari BaliPost.com, MetroBali.com, BaliPuspaNews.com, Jawapos.com dan BaleBengong.id.
Cukup dengan satu aplikasi, anda bisa membaca berbagai berita dari media-media tersebut dengan mudah dan cepat.
Fitur Gatra Bali:
  • Berita paling update
  • Berita kabupaten/kota di Bali
  • Berita Bali United terkini
  • Berita Hukum dan Kriminal terkini
  • Baca artikel dari BaleBengong.id
  • Simpan berita / bookmark (login diperlukan)
  • Notifikasi untuk mendapatkan berita terbaru (login diperlukan)
  • Buat akun mudah dengan Google atau Facebook
Perhatian: Untuk versi ini (1.0.7), login diperlukan untuk menikmati fitur Simpan berita dan Notifikasi, tapi di versi selanjutnya anda bisa menikmati fitur tersebut tanpa buat akun.
Gatra Bali news reader

GitHub

Gatra Bali news reader made using Flutter — Read More
Latest commit to the master branch on 8-3-2019
Download as zip

A Full fledged todo app which is made with Flutter and Dart


TaskList

This project is a starting point for a Flutter application.






GitHub

A brand new tasklist made with love in Flutter and Dart by using Firebase as backend system — Read More
Latest commit to the master branch on 6-26-2019
Download as zip

Global loading widget with flutter



load

Global loading widget, which can be used through simple configuration.
Pure flutter library, not use native code.
It is similar to OKToast in use.

ScreenShot



Usage

  • install
Add to yaml
version is
pub package
dependencies:
  load: $latest_version
YAML
  • import
import 'package:load/load.dart';
Dart
  • wrap your application
void main() {
  runApp(
    LoadingProvider(
      child: MyApp(),
    ),
  );
}

or

LoadingProvider(
  child: MaterialApp(),
);
Dart
see example/lib/main.dart
  • show or hide dialog
showLoadingDialog();
showCustomLoadingWidget(Container()); // custom dialog
hideLoadingDialog();
Dart

Advanced Usage

Custom Loading Widget

Using LoadingThemeData and loadingWidgetBuilder
LoadingProvider(
    loadingWidgetBuilder: (ctx, data) {
    return Center(
        child: SizedBox(
        width: 30,
        height: 30,
        child: Container(
            child: CupertinoActivityIndicator(),
            color: Colors.blue,
        ),
        ),
    );
    },
    child: MyApp(),
),

image

Custom some config

All params is optional
PARAMSTYPEDEFAULT VALUEDESC
backgroundColorColorColors.black54Background transparent mask
tapDismissbooltrueWill it close when touching the background?
loadingBackgroundColorColorColors.whiteBackground color for the center Loading Widget
loadingPaddingEdgeInsetsEdgeInsets.all(8.0)Padding for the center Loading Widget
loadingSizeSizeSize(55,55)Size for the center Loading Widget
animDurationDurationDuration(milliseconds: 300)Show/Hide Time Duration

GitHub

— Read More
Latest commit to the master branch on 7-21-2019
Download as zip

Sunday, 4 August 2019

A Horoscope Forcasting Application Built with Flutter



Zodoscope

A Horoscope Forcasting Application Built with Flutter, for Android and iOS.

Key Features

  • All Zodiac Signs Horoscopes
    • Information about every zodiac sign's horoscope with signs
    • Beautiful slider animation with consistent zodiac icons
    • Sign hero animation between page transitions
  • API Reading and JSON Manipulation
    • Using HTTP requests to take data from the mentioned API
    • Parsing JSON strings into actual string, displayable format
  • Daily, Weekly, Monthly and Yearly Forcasting
    • Interval can be change by tapping the FAB
    • Fluid interval preview animation
  • Network Connectivity Check
    • Stream listening to connectivity status
    • Error report upon internet connection issues or data retrieval problems
PS: To navigate from the details screen back to the homescreen, simply swipe the sign down.

Screenshots



GIF Preview



GitHub

A horoscope forcasting application for both Android and iOS — Read More
Latest commit to the master branch on 8-1-2019
Download as zip