SwiftyFlow
SwiftyFlow
Both android and iOS
I managed to go at 4.50km/h! ```dart Future _getSpeed() async { await Geolocator.requestPermission(); final LocationSettings settings = _createLocationSettings(); while (_running) { await Future.delayed(const Duration(milliseconds: 1000)); Geolocator.getPositionStream(locationSettings: settings).listen( (Position position) {...
nah just gonna remove it or use another method...
Ok I was lazy to unlock each file if it was quick for you. I'll do it my side. Thanks for the answer (a bit sad hahaha)
Hi there, Have you find a way to intercept the link before it gets opened in the device browser? I gotta open it in-app... I have it to work if...
Found a way... In your Chat() where you have the ``` messages: _messages, onAttachmentPressed: _handleAttachmentPressed, onMessageTap: _handleMessageTap, onPreviewDataFetched: _handlePreviewDataFetched, onSendPressed: _handleSendPressed, ``` I have added: ``` usePreviewData: false, //(not sure...
my ThemeData on main: ``` theme: ThemeData( appBarTheme: const AppBarTheme(systemOverlayStyle: SystemUiOverlayStyle.light), primarySwatch: greyCustom, colorScheme: ColorScheme.fromSwatch(primarySwatch: purpleCustom).copyWith( secondary: orangeCustom, background: greyCustom, error: orangeCustom, ), primaryColorLight: greyCustom, textTheme: GoogleFonts.robotoTextTheme( Theme.of(context).textTheme, ), buttonTheme:...
flutter doctor -v [✓] Flutter (Channel master, 3.6.0-12.0.pre, on macOS 12.6 21G115 darwin-x64, locale en-AU) • Flutter version 3.6.0-12.0.pre on channel master at /Users/flowpottevin/Desktop/flutter • Upstream repository https://github.com/flutter/flutter.git • Framework...
flutter run -v: Not allowed to give private company data. flutter run -v -> prints confidential data - cannot provide that...
``` import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:google_fonts/google_fonts.dart'; void main() { WidgetsFlutterBinding.ensureInitialized(); SystemChrome.setSystemUIOverlayStyle( SystemUiOverlayStyle.dark.copyWith( statusBarColor: Colors.black, // Color for Android statusBarIconBrightness: Brightness.dark, // Status bar for Android statusBarBrightness: Brightness.dark), // Dark...