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
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 | |
// |
// Based off https://medium.com/akvelon/how-to-make-textfield-in-multiple-colors-in-flutter-c317ae0efafe | |
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(const MyApp()); | |
} | |
final controller = HubQLTextEditingController(); |
Last updated: 2023-12-23
The SwiftUI tutorials are truly excellent. They raise the bar for a UI framework's introduction. Please don't be discouraged by the feedback below, you all have done wonderful work!
I have not completed the tutorials yet. I will add more content as I continue progressing through the tutorials.
#include <iostream> | |
class Foo { | |
public: | |
std::unique_ptr<int> data; | |
Foo(int d) { | |
data = std::make_unique<int>(d); | |
std::cout << "Constructor called" << std::endl; | |
}; |