Make a timer application with a fancy neon effect and beautiful UI

neon_circular_timer Make a timer application with a fancy neon effect and beautiful UI v0.0.3 and above now the timer has also a neumorphic border Preview of example Usage NeonCircularTimer( width: 200, duration: 20, strokeWidth: 10, textFormat: TextFormat.MM_SS, isTimerTextShown: true, neumorphicEffect: true, textStyle: Theme.of(context).textTheme.headline3, outerStrokeColor: Colors.grey.shade100, fillGradient: LinearGradient(colors: [ Colors.greenAccent.shade200, Colors.blueAccent.shade400 ]), neonGradient: LinearGradient(colors: [ Colors.greenAccent.shade200, Colors.blueAccent.shade400 ]), strokeCap: StrokeCap.round, fillColor: …

A flutter application for cognitive fatigue assessment

Motivation soTired is an application for cognitive fatigue assessment.It includes a stand-alone Android app for fatigue detection and an additional part for data management and further analysis. The project is structured as client side (stand-alone app) implemented in Dart/Flutter and a server side (data management) written in Golang. Besides Android, Dart/Flutter provides the ability to add an iOS, desktop and …

A M.U.D with a back end API built with nestjs and a front end UI built with Flutter

Nest M.U.D – Getting Started A M.U.D (multi user dungeon) with a back end API built with nestjs and a front end UI built with Flutter. Server 📝 Look at what these scripts actually do before running them! Setup Attempts to install nvm, node, yarn, nestjs and package.json defined dependencies. cd server ./script/setup Start Server Starts a postgres database in …

A Flutter plugin to show incoming call in your Flutter app

flutter_incoming_call A Flutter plugin to show incoming call in your Flutter app! Alpha version(not ready for production!) Usage To use this plugin: Configure android project: Just add to your manifest activity and receiver. <activity android:name=»com.github.alezhka.flutter_incoming_call.IncomingCallActivity» android:theme=»@style/Theme.AppCompat» android:screenOrientation=»portrait» android:showOnLockScreen=»true»> <intent-filter> <action android:name=»com.github.alezhka.flutter_incoming_call.activity.ACTION_INCOMING_CALL» /> <category android:name=»android.intent.category.DEFAULT» /> </intent-filter> </activity> <receiver android:name=»com.github.alezhka.flutter_incoming_call.CallBroadcastReceiver» android:enabled=»true» android:exported=»false»/> Configure Flutter plugin: FlutterIncomingCall.configure( appName: ‘example_incoming_call’, duration: 30000, android: …

Native context menu for flutter apps

native_context_menu Native context menu for flutter apps Installation flutter pub add native_context_menu Usage import ‘package:native_context_menu/native_context_menu.dart’; import ‘package:flutter/material.dart’; void main() { runApp(App()); } class App extends StatefulWidget { const App({Key? key}) : super(key: key); @override State<App> createState() => _AppState(); } class _AppState extends State<App> { String? action; @override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( body: ContextMenuRegion( onDismissed: () => …

Cambodia Geography App Build Using Flutter

Cambodia Geography Discover places & geography around Cambodia. Getting Started In this project, we use flutter 2.2.3. If you have different version, you should consider install FVM. Prerequisites fvm flutter pub get fvm flutter run Built with Flutter 2.2.3 – The framework used Dart – The language used Data use Cambodia Geography API – By our backend team. https://geo.nestcode.co – …

A Tip Calculator app made in Flutter

Tip Calculator App A Tip Calculator app made in Flutter. Prerequisites These things are required before setting up the project. Git Flutter Read Guide Getting Started Follow these instructions to get the project up and running. # clone the repo git clone https://github.com/ravgeetdhillon/flutter-tip-calculator # rename to match the package name mv -r flutter-tip-calculator tip_calculator # change directory cd tip_calculator # …