Mes: abril 2022

  • An implementation of the Voxel Space Engine in Flutter

    voxel_space Demo of the Voxel Space Engine. This project is a Flutter recreation of the Voxel Space Engine based on Sebastian Macke and Leanardo Ono’s implementation of the same. Getting Started This project is a starting point for a Flutter application. A few resources to get you started if this is your first Flutter project: Lab: Write your first Flutter …

  • Weather App Using OpenWeatherMap API service Daily Forecast and Historical Weather based on users location

    Weather App Using OpenWeatherMap API service Daily Forecast and Historical Weather based on users location and using Basic weather map service to display precipitation and temperature on Google Maps. Details:- Framework:- Flutter IDE:- VS code State Management Tools:- Bloc Architecture Pattern:- TDD Apis:- Google Map Apis, OpenWeatherMap API Package:- cupertino_icons, Bloc, geolocator, http, intl, google_maps_flutter, mocktail. Note:-Application also works fine …

  • A positive counter app built with Flutter

    ticker A trivial counter app. Development notes for posterity’s sake Scrolling digits Use the ListWheelScrollView widget to show digits one above the other. The widget requires two fields: itemExtent and children. In this last property create a list of widget to show the ten numbers. children: List<Widget>.generate( digits, (index) => FittedBox( child: Text( (‘$index’), ), ), ), FittedBox helps to …

  • Learn basic UI design with Flutter SDK for Mobile Application

    flutter_ui_basic This repository meant to learn basic UI design with Flutter SDK for Mobile Application. Preview Home Screen Preview Message Screen Preview This project is a starting point for a Flutter application. A few resources to get you started if this is your first Flutter project: Lab: Write your first Flutter app Cookbook: Useful Flutter samples For help getting started …

  • QR code detection application with Flask API and Flutter

    QR code detection application with Flask API and Flutter This application sends the image taken from the phone with Flutter to the Flask API, then the QR codes are detected and marked in the captured image, then this image is encoded with base64 and returned to the phone, finally this base64 encoded image is decoded and displayed on the phone …

  • Demo Food Application using Dio and TheMealApi Flutter

    Fetch Data From themealdb.com Api Using Dio . dio: ^4.0.4 A powerful Http client for Dart, which supports Interceptors, Global configuration, FormData, Request Cancellation, File downloading, Timeout etc. Getting Started Download this package as a library Depend on it Run this command: $ flutter pub add dio This will add a line like this to your package’s pubspec.yaml (and run …