Tuesday, 6 August 2019

A flutter application implements flutter map and location plugins


Localizer

Localizer is a flutter application implements flutter_map and location plugins to provide your current/given position then render it on a map.

:stars: Features

VERSIONNEW FEATURESPLUGINS ADDED
Version 0.1.0Find Your locationlocation
flutter_map
Version 0.2.0Search locations
Version 0.3.0Save Your Favorite locationshared_preferences
Version 0.4.2Get Current WeatherOpenWeatherMap API

Screenshots :
















GitHub

— Read More
Latest commit to the undefined branch on unknown
Download as zip




Cipherly

Cipherly is first open source Password Manager made using Flutter!
Cipherly is a password manager built using Flutter based on AES Encryption. Cipherly securely stores the passwords and protect them using AES Encryption.
A Master Password is used to encrypt the passwords and it can be only decrypted using it.

Features to add

  • [x] Basic Password Store
  • [x] Encrypt Decrypt Password
  • [x] Encrypt using Master Password as Key
  • [ ] Add default social networks like Facebook, Google, etc.
  • [x] Add custom passwords
  • [ ] Generate Random Password
  • [ ] Password Strength Checker
  • [ ] Add Search
  • [ ] Add Fingerprint or Custom Pin Lock to secure all passwords








GitHub

Cipherly is a Password Manager built using Flutter! — Read More
Latest commit to the master branch on 6-15-2019
Download as zip





A simple and clean news app made with Flutter and Dart


news_app

This project is a starting point for a Flutter application.














GitHub

A simple and clean news app made with Flutter and Dart — Read More
Latest commit to the master branch on 7-15-2019
Download as zip

A tool to build Flutter layouts on-device


MetaFlutter

MetaFlutter is a project to create Flutter layouts on device.
Learn, explore and experiment with Flutter widgets directly on your phone.
MetaFlutter allows you to create Flutter layouts using a wide and constantly growing range of Flutter widgets.
Build out an idea you had instantly, try out something you've never tried before or just use it as a tool for Flutter layout demonstrations.
No login. Free to use. Open-source.

GitHub

A tool to build Flutter layouts on-device — Read More
Latest commit to the master branch on 7-1-2019
Download as zip

A flutter package for creating badges



Badges for Flutter

A flutter package for creating badges.

Installing:

In your pubspec.yaml
dependencies:
  badges: ^1.0.0
YAML
import 'package:badges/badges.dart';
Dart

Basic Usage:

    Badge(
      badgeContent: Text('3'),
      child: Icon(Icons.settings),
    )
Dart

Custom Usage

There are several options that allow for more control:
PROPERTIESDESCRIPTION
Widget badgeContentThe content of badge. Usually Text or Icon.
Color badgeColorBackground color of the badge.
Widget childThe main widget. By default it's below the red badge. Usually IconIconButtonText or button.
double elevationShadow of the badge.
bool toAnimateWhether animate badge when badge content changed or not.
BadgePosition positionCan be one of BadgePosition.topLeft()BadgePosition.topRight()BadgePosition.bottomLeft()BadgePosition.bottomRight(). Sometimes you want to create unique badge position or create new one manually. For this use BadgePosition.topRight(top: -12, right: -20) or BadgePosition.(left, top, right, bottom).
BadgeShape shapeBadgeShape.circle or BadgeShape.square. You can use borderRadius to change border radius of badge of you use square BadgeShape.square.
double borderRadiusBorder radius of badge. Applies only if BadgeShape.square is used.
EdgeInsets paddingThe padding of badge content.
Duration animationDurationThe duration of badge animation when badge content is changed.
BadgeAnimationType animationTypeCan be one of BadgeAnimationType.slideBadgeAnimationType.scale or BadgeAnimationType.fade.

GitHub

A flutter package for creating badges. — Read More
Latest commit to the master branch on 7-2-2019
Download as zip