EN VI

What is Flutter?

Flutter is an open source framework by Google for building beautiful, natively compiled, multi-platform applications from a single codebase.
Posts (0)
Questions (32)
2024-03-12 14:30:05
I think you have mistakenly written Double instead of double change this line of code cart.addItem(product.id, product.price as Double, product.title); to this cart.addItem(product.id, product.price...
Tags: Flutter dart
2024-03-12 19:00:06
I don't see why you would need a stream at all. a simple onDoubleTap: () => setState(() => board[row][col].currentHealth -= 1), might be all you need
Tags: Flutter dart
2024-03-12 21:00:09
Try wrapping the Container in Scaffold. @override Widget build(BuildContext context) { return Scaffold( body: Container( child: Center( child: Column( mainAxisAlignme...
Tags: Flutter dart
2024-03-13 15:30:09
Try this class MyCustomClipper extends CustomPainter { @override void paint(Canvas canvas, Size size) { Path path_0 = Path(); path_0.moveTo(111.858,1.73511); path_0.lineTo...
Tags: Flutter
2024-03-13 17:30:10
you should use SafeArea like this: @override Widget build(BuildContext context) { return Scaffold( body: SafeArea( Column( children: [ Container( height: 50...
Tags: Flutter dart
2024-03-13 18:30:10
I think you are looking for ClipRRect which has borderRadius property.
Tags: Flutter dart
2024-03-14 15:00:09
To solve this the easy ways is to delete the android folder in your project and run flutter create . command in project directory and add any you have previously done in the android folder like permis...
Tags: Flutter dart gradle
2024-03-14 15:30:04
First of all, you need to learn what the null safety is. If you create some variables with ?, that is nullable variable, so that variable can receive null. For example, if you create variable like thi...
Tags: Flutter dart
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

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