EN VI
Posts (0)
Questions (21)
2024-03-14 20:00:04
You can try this new version. may be it's useful for you. PopScope( canPop: false, onPopInvoked: (bool didPop) { if (didPop) { return; }...
Tags: android Flutter dart
2024-03-14 21:30:04
Change your Dart callback implementation from: Int32 destroyBluetooth(emetryhub_bluetooth_ctx_t ctx) { return 0 as Int32; } to int destroyBluetooth(emetryhub_bluetooth_ctx_t ctx) { retu...
Tags: c# Flutter dart
2024-03-15 02:00:09
Looks like you missed to call the VoidCallback from the TextField Widget, calling it onSubmitting solves the issue. I have forked your code and added the result TextField( controller: textEdit...
Tags: Flutter dart autocomplete
2024-03-15 11:00:05
Elevated button is a fixed component, you can't customise it to your own sizes. (You could just set padding to EdgeInsets.zero in style of elevated button) Better to use a Container and decoration to...
Tags: Flutter dart
2024-03-15 12:30:04
You should use js package. Add js to pubspec.yaml dependencies: flutter: sdk: flutter js: ^0.6.3 Add function or include your js file in web/index.html function showAlert(message) { ale...
Tags: Javascript Flutter dart
2024-03-16 00:30:10
Use the deny method, and the following Regex - [|]. FilteringTextInputFormatter.deny(RegExp(r'[|]'))
Tags: regex Flutter dart
2024-03-16 03:30:10
As long as the child has fixed size, you can remove padding through making the TextButton to be as big as its child: just set : minimumSize: MaterialStatePropertyAll(Size(50,50)), note: keep padding...
2024-03-16 22:00:06
Your page must be a StatefulWidget for this and you must define readPage in the State: class _MyPageState extends State{ Widget readPage = BeforeRead(theme: theme); @override Widget build(BuildCo...
Tags: Flutter dart
2024-03-17 01:00:08
Your code printouts simultaneously without awaiting their completion, leading to overlapping outputs use asynchronous execution with awaited delays Future printFancy(String data) async { List samp...
Tags: Flutter dart logic
2024-03-17 08:00:08
1. Change the name of your assets from deporte.json to deportes.json this is giving you this error [ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: Unable to load asset: "ass...

Login


Forgot Your Password?

Create Account


Lost your password? Please enter your email address. You will receive a link to create a new password.

Reset Password

Back to login