noResponse The following actions uses node12 which is deprecated and will be forced to run on node16: godofredoc/no-response@0ce2dc0e63e1c7d2b87752ceed091f6d32c9df09. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-no...
await SentryFlutter.init( @@ -77,14 +80,16 @@ class AgoraAppConfig extends Equatable { final String environmentName; final String sentryDsn; final String appIcon; final Color appBarColor; AgoraAppConfig({ required this.baseUrl, required this.environmentName, required this.sentryDsn, required thi...
- arm: multiple updates - elf: loader: do not fail on invalid DYNAMIC program table entries - dart: preliminary support for dart/flutter aot snapshots 2.19/2.19.1 - dex: added user-specified InlineMode flags for internal methods (re: IDexMethodData api) - dexdec: generic method inliner (...
- arm: multiple updates - elf: loader: do not fail on invalid DYNAMIC program table entries - dart: preliminary support for dart/flutter aot snapshots 2.19/2.19.1 - dex: added user-specified InlineMode flags for internal methods (re: IDexMethodData api) - dexdec: generic method inliner (...
Changed the background color of the progress bar on the Video Upload screen. Fixed an issue where the camera positioning was not restored correctly upon resuming the app from the background. QuestionsandVoiceConsentsteps are now automatically skipped when audio is disabled. Adapted the tutorials not...
Flutter UI initializes, as well as behind your Flutter UI while its running. This Theme is only used starting with V2 of Flutter's Android embedding. --> <item name="android:windowBackground">@android:color/white</item> </resources> 7 changes: 7 additions & 0 deletions 7 andro...
# # - always_put_required_named_parameters_first # we prefer having parameters in the same order as fields https://github.com/flutter/flutter/issues/10219 - always_require_non_null_named_parameters - always_specify_types # # - always_use_package_imports # we do this commonly - always_use...
Steps to reproduce Create a Form in your Flutter App using a TextFormField(). Localize your Flutter app according to the docs. Build simple form validation according to the docs, by returning a localized string via the validator (e.g. Ap...
import 'package:flutter/material.dart'; import 'package:scan_barcode/scan_barcode.dart'; class CustomBarcodeOverlayExample extends StatefulWidget { const CustomBarcodeOverlayExample({Key? key}) : super(key: key); @override State<CustomBarcodeOverlayExample> createState() => _CustomBarcodeOverlayExa...
title:'Flutter Demo', theme:ThemeData( colorScheme:ColorScheme.fromSeed(seedColor:Colors.deepPurple), useMaterial3:true, ), home:Scaffold( appBar:AppBar( backgroundColor:Theme.of(context).colorScheme.inversePrimary, title:constText('Flutter Demo Home Page'), ...