#dartlang

Philipp H. :dart: :flutter:PhilippHGerber@fluttercommunity.social
2025-06-22
Philipp H. :dart: :flutter:PhilippHGerber@fluttercommunity.social
2025-06-22

Just released quantify v0.3.0 - a type-safe units library for #DartLang & #Flutter.
โœ… Compile-time unit safety
โœ… Intuitive syntax: 10.m + 5.ft
โœ… Zero runtime overhead
โœ… Immutable by design

๐Ÿค– A new #Flutter release is available !
Channel: beta
Version: 3.34.0-0.0.pre
#flutterdev #flutterio #dartlang

๐Ÿค– A new #Flutter release is available !
Channel: stable
Version: 3.32.4
#flutterdev #flutterio #dartlang

๐Ÿค– A new #Flutter release is available !
Channel: stable
Version: 3.32.3
#flutterdev #flutterio #dartlang

Hank G โ˜‘๏ธhankg@friendica.myportal.social
2025-06-11
Apple is breaking debug/hot reload on physical devices for Dart/Flutter and pretty much any other platform that runs like that. Fucking Apple pulling their bullshit again... #apple #rant #DartLang #flutter #programming github.com/dart-lang/sdk/issueโ€ฆ

๐Ÿค– A new #Flutter release is available !
Channel: stable
Version: 3.32.2
#flutterdev #flutterio #dartlang

Filip Hracekfiliph
2025-06-03

TIL it's actually easier than I thought to share a memory buffer between Isolates in Dart, and thus avoid the copy cost.

This punches a hole in the isolation but could also be very helpful for performance.

forum.itsallwidgets.com/t/how-

Most people won't need this but if you have a long-living chunk of data that is constantly being updated (common in some games), then this is fantastic news.


void main() async {
  const n = 1000;
  final pointer = malloc.allocate<Int64>(n * Int64List.bytesPerElement);
  final array = pointer.asTypedList(n, finalizer: malloc.nativeFree);

  final random = Random();
  for (var i = 0; i < n; i++) {
    array[i] = random.nextInt(10);
  }

  print('Original array: $array');

  final receivePort = ReceivePort();
  final isolate = await Isolate.spawn(isolateEntry, [
    receivePort.sendPort,
    n,
    pointer,
  ]);

๐Ÿค– A new #Flutter release is available !
Channel: stable
Version: 3.32.1
#flutterdev #flutterio #dartlang

๐Ÿค– A new #Flutter release is available !
Channel: beta
Version: 3.33.0-0.2.pre
#flutterdev #flutterio #dartlang

Alvin Ashcraft ๐Ÿฟ๏ธalvinashcraft@hachyderm.io
2025-05-29
Nicos Nicolaou :androidHead:nicolaou_nicos@androiddev.social
2025-05-27

Flutter 3.32 is out! ๐Ÿš€

- Impeller on Android (stable)
- DevTools preview in VS Code
- New Material widgets
- CanvasKit 3.0.0
- Breaking changes to note

Release notes: docs.flutter.dev/release/relea

#FlutterDev #DartLang #Flutter #Dart #AndroidDev #iOSDev

2025-05-24

Although #ManfredApp (my Mastodon client) is written in Flutter, I am working with #Kotlin in the backend for quite some time and like it better than #Dartlang. Having checked out the latest news from KotlinConf, I am now going to give Compose Multiplatform a try. The last time I checked, it did not have hot reload, which instantly put me off. However, hot reload for Compose is now in alpha, so let's see how it goes.

๐Ÿค– A new #Flutter release is available !
Channel: beta
Version: 3.33.0-0.1.pre
#flutterdev #flutterio #dartlang

2025-05-21

Client Info

Server: https://mastodon.social
Version: 2025.04
Repository: https://github.com/cyevgeniy/lmst