Tuesday, 6 August 2019

Snake game built in flutter


Snake

Snake game built in flutter

Motivation

Flutter is pretty cool. This is just a small project I did to test it out. There are no tests and the code quality is what you'd expect from a weekend hack.


GitHub

Snake game implemented in Flutter — Read More
Latest commit to the master branch on 9-29-2018
Download as zip

Minimalistic local music player built with flutter for android



Nano Music Player

Simple local music player built with flutter. It uses the audioplayer plugin to play files, and path_provider to locate the external directory and search it for playable files. Metadata is gathered through native java code. I also used this Waves widget.

GitHub

Minimalistic local music player built with flutter for android. — Read More
Latest commit to the master branch on 3-31-2019
Download as zip

Hacker News Client built using Flutter



hackernews

Hacker News Client built using Flutter.

Getting Started

  • Download and install latest Flutter SDK
  • Run the app

GitHub

Hacker News client implemented using Flutter — Read More
Latest commit to the master branch on 11-7-2018
Download as zip

Flutter package for Eva Icons



eva_icons_flutter

Flutter package for Eva Icons. Eva Icons is a pack of more than 480 beautifully crafted Open Source icons for common actions and items.
This package brings Eva Icons pack available as Flutter Icons. It has beautiful outlined and rounded Icons.

Installation

In the dependencies: section of your pubspec.yaml, add the following line:
eva_icons_flutter: <latest_version>
YAML

Usage

import 'package:eva_icons_flutter/eva_icons_flutter.dart';

class MyWidget extends StatelessWidget {
  Widget build(BuildContext context) {
    return IconButton(
      // Use the EvaIcons class for the IconData
      icon: Icon(EvaIcons.heart),
      onPressed: () { print("Eva Icon heart Pressed"); }
     );
  }
}
Dart

Example

View the Flutter app in the example directory.

Screenshot


GitHub

Flutter package for Eva Icons. Eva Icons is a pack of more than 480 beautifully crafted Open Source icons for common actions and items. https://pub.dartlang.org/packages/eva_icons_flutter — Read More
Latest commit to the master branch on 6-1-2019
Download as zip

A simple Pomodoro timer written in Flutter web