Mes: diciembre 2020

  • A self-hosted controller for mobile built using the Flutter

    LunaSea LunaSea is a fully featured, open source self-hosted controller! Focused on giving you a seamless experience between all of your self-hosted media software, LunaSea supports: Lidarr Radarr Sonarr NZBGet SABnzbd Newznab Indexer Searching NZBHydra2 Tautulli Wake on LAN LunaSea even comes with support for multiple instances of applications using profiles, backing up and restoring your configuration to your filesystem, …

  • A simple Flutter app that fetches data from a WordPress blog

    WordPress Blog App A simple Flutter Blog Application, which fetches data from naijatechguy.com, which is a blog, using the blog api. Still working on it and new features will be added soon. Plugin’s Used Http Html (To remove html formats from text) Intl (Date formater) Provider (Manage State) Hive Auto Size Text Pull to Refresh Shimmer Cached Network Image (To …

  • A beautiful and cute app for pet adoption made with Flutter

    PetApp An (Sample)app that allows users to donate their pets and adopt others pets. This app’s design was taken from Dribbble and I followed a tutorial by The Growing Developer on YouTube to complete this app. The app currently has two full screens and a side-drawer. The most fascinating thing about the app is it’s unique side-drawer that makes the …

  • Pangolin Desktop UI shell designed for dahliaOS in Flutter

    Pangolin Desktop UI Pangolin Desktop UI shell, designed for dahliaOS, written in Flutter. Pangolin UI is a Desktop shell for dahliaOS, written in Flutter, runs on Linux and Zircon Pangolin was named after a shelled animal like the Armadillo UI Pangolin Desktop is based on the deprecated Capybara shell, with a custom window management system built from the ground up …

  • Pet Finder App with Flutter + Firebase + Hasura

    Pet Finder Pet project with Flutter + Firebase + Hasura. How to Start $ flutter packages pub run build_runner build –delete-conflicting-outputs for VSCode Apollo GraphQL $ npm install -g apollo create ./apollo.config.js module.exports = { client: { includes: [‘./lib/**/*.dart’], service: { name: ‘<project name>’, url: ‘<graphql endpoint>’, // optional headers headers: { ‘x-hasura-admin-secret’: ‘<secret>’, ‘x-hasura-role’: ‘user’, }, // optional disable …

  • Easy-to-use libsodium crypto library with flutter

    flutter_sodium With flutter_sodium you get access to the modern, easy-to-use libsodium crypto library in your Flutter apps. One set of crypto APIs supporting both Android and iOS. Getting Started In your flutter project add the dependency: dependencies: … flutter_sodium: ^0.1.6 Import the plugin and initialize it. Sodium.init() initializes the plugin and should be called before any other function provided by …

  • Input fields for Flutter standalone or within a form

    flutter_input This package provides input widgets (fields) to manipulate data. The data to manipulate is either a single variable or an entry in a map. The map can even be nested. Parameter path defines the key to access the entry in the map. To access an entry in a nested map, the keys must be separated by a single slash …

  • Utility classes/functions to help with UI development using the Flutter

    Aqua Utility classes/functions to help with UI development using the Flutter framework. It is recommended to use the as keyword with the import statement when importing the package to prevent name conflicts, for example… import ‘package:aqua/aqua.dart’ as aqua To log output to file await aqua.log(‘data to log’, logFile: ‘path/to/file’, clear: true, time: true); To save data to device Future<void> save() …