Wednesday, 14 August 2019

An extensive snap tool/widget for Flutter



snap

An extensive snap tool/widget for Flutter that allows very flexible snap management and snapping between your widgets. Inspired by WhatsApp's in-app Youtube player.


This is a very detailed snap tool that allows very flexible snap management and snapping between your widgets. Just wrap
your snapper widget with "SnapController", fill the parameters, define your snappablewidget and this package will
take care of everything else.

Notes

I started using and learning Flutter only some weeks ago so this package might have some parts that don't make sense,
that should be completely different, that could be much better, etc. Please let me know! Nicely!

GitHub

An extensive snap tool/widget for Flutter that allows very flexible snap management and snapping between your widgets. — Read More
Latest commit to the master branch on 8-13-2019
Download as zip

Code::Stats Viewer app with flutter



Code::Stats Viewer

Code::Stats has plugins for various editors. If you wish to make one for your own favourite editor, you are free to check out the API documentation!
Get it on Google Play


Running the app

To run this project:
  • Follow the Flutter installation instructions
  • Clone this project and run flutter doctor in the project root directory
  • Run flutter run

GitHub

Flutter app for browsing Code::Stats profiles — Read More
Latest commit to the master branch on 8-13-2019
Download as zip

Tuesday, 13 August 2019

An e-commerce app which is made with Flutter and Dart



e-Bazaar -- Under Construction

An e-commerce app which is made with Flutter and Dart.

Features in e-Bazaar

  • Dynamic theming switch between Dark and Light mode
  • Login, Logout and Signup using Firebase
  • SignInWithGoogle
  • Forgot password and Resetting the Password.
  • Each section has different pages and screens
  • Beautiful UI with Carousel and nice Color combinations.


GitHub

An e-commerce app which is made with Flutter and Dart — Read More
Latest commit to the master branch on 8-9-2019
Download as zip

Monday, 12 August 2019

Flutter representation of a furniture app UI



Flutter Furniture App Concept

Flutter representation of a Furniture App Concept i found on Uplabs.

Requirements

  • Any Operating System (ie. MacOS X, Linux, Windows)
  • Any IDE with Flutter SDK installed (ie. IntelliJ, Android Studio, VSCode etc)
  • A little knowledge of Dart and Flutter
  • A brain to think

ScreenShots









Toggle theme

To toggle the theme, change the isDark variable in main.dart.
true for dark and false for light.

Author(s)

Olusegun Festus Babajide

GitHub

Flutter representation of a furniture app UI — Read More
Latest commit to the master branch on 8-8-2019                                           Download as zip


Thanos snap effect in Flutter



snappable

Thanos snap effect in Flutter.

Examples







Getting Started

Import it

import 'package:snappable/snappable.dart';
Dart

Wrap any widget in Snappable

@override
Widget build(BuildContext context) {
  return Snappable(
    child: Text('This will be snapped'),
  );
}
Dart

Snap with a Key


class MyWidget extends StatelessWidget {
  final key = GlobalKey<SnappableState>();
  @override
  Widget build(BuildContext context) {
    return Snappable(
      key: key,
      child: Text('This will be snapped'),
    );
  }
  
  void snap() {
    key.currentState.snap();
  }
}
Dart
Undo by currentState.reset().

or snap by tap


class MyWidget extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Snappable(
      snapOntap: true,
      child: Text('This will be snapped'),
    );
  }
}
Dart
Undo by tapping again.

GitHub

Thanos snap effect in Flutter — Read More
Latest commit to the master branch on 8-9-2019
Download as zip