Framework commit: 6dd929ab289c90cdb22e07a3c650115cbdc55728
Engine PR: https://github.com/flutter/engine/pull/54972/commits/95e95ec01f648339a1ca4d159ae5bdbd9a68d716
class Key {} | |
class Size {} | |
class Widget {} | |
// Decorator uses Dart callable magic | |
// https://dart.dev/language/callable-objects | |
class SizedBoxDecorator { | |
SizedBoxDecorator(this.child); | |
final Widget child; |
import 'dart:convert'; | |
void main() { | |
String text = "This string will be base64 encoded!"; | |
print(base64Encode(utf8.encode(text))); | |
} |
Framework commit: 6dd929ab289c90cdb22e07a3c650115cbdc55728
Engine PR: https://github.com/flutter/engine/pull/54972/commits/95e95ec01f648339a1ca4d159ae5bdbd9a68d716
To generate top_200_popular_packages_20240718.json
:
.mode list
.output sources/top_200_popular_packages_20240605.txt
SELECT
lower_id
FROM 'tables/package_scores.json'
ORDER BY popularity_score DESC
Design doc | Link |
---|---|
A Foundation for 2D scrolling | https://docs.flutter.dev/go/2D-Foundation |
Support Links in Android Accessibility | https://docs.flutter.dev/go/a11y-links |
A11y Support Text Attributes | https://docs.flutter.dev/go/a11y-text-attributes |
Actions API Design Revision | https://docs.flutter.dev/go/actions-and-shortcuts-design-revision |
Add Additional Options to Selection Controls | https://docs.flutter.dev/go/add-missing-features-to-selection-controls |
Add-to-APp Samples | https://docs.flutter.dev/go/add-to-app-samples |
Allow DataTable row height to expand | https://docs.flutter.dev/go/allow-datatable-row-height-to-expand |
Analyze Flutter in Runtime | https://docs.flutter.dev/go/analyze-flutter-in-runtime |
These reports track the Pub ecosystem's migration from CocoaPods to Swift Package Manager.
This data was generated on 2024-10-06 using pub insights: https://github.com/loic-sharma/pub_insights
.podspec
file..modulemap
file.I am adding Swift Package Manager support to the camera_avfoundation
package. See: flutter/packages#6710
However, the Mac_x64 ios_build_all_packages master
check fails:
Warning: Building for device with codesigning disabled. You will have to manually codesign before deploying to device.
Data ranges from July 18, 2021 to March 3, 2024.
Week | New reactions |
---|
Given the following RFW text:
import core.widgets;
widget root = Row(
children: [
...for city in args.cities:
switch args.showCities {
true: City(),
// The Windows compositor changes regresses the animation in | |
// the `material_floating_search_bar_2` package: | |
// | |
// https://pub.dev/packages/material_floating_search_bar_2/versions/0.5.0 | |
// | |
// Below is a minimal repro of the broken animation. This has two pieces: | |
// | |
// 1. The background fades to a grey color | |
// 2. A box is "revealed" using a custom clipper | |
// |