Here is the activity on flutter/flutter#158050 in hte last 100 days (from 2025-08-13 to 2025-11-21):
| Total reactions | Total comments | New reactions | New comments |
|---|---|---|---|
| 95 | 14 | 3 | 2 |
- Install DuckDB.
| final counter = signal(0); | |
| final userProfile = signal({ 'name': 'Guest' }); | |
| final counterSquared = computed((context) { | |
| final count = context.watch(counter); | |
| return count * count; | |
| }) | |
| final printEffect = effect((context) { | |
| final count = context.watch(counter); | |
| print('Counter changed to $count'); |
Here is the activity on flutter/flutter#158050 in hte last 100 days (from 2025-08-13 to 2025-11-21):
| Total reactions | Total comments | New reactions | New comments |
|---|---|---|---|
| 95 | 14 | 3 | 2 |
| import 'package:flutter/material.dart'; | |
| void main() => runApp(const MyWidget()); | |
| class MyWidget extends StatelessWidget { | |
| const MyWidget({super.key}); | |
| @override | |
| Widget build(BuildContext context) { | |
| return const Column( |
| class ParagraphSlide0 : public ParagraphSlide_Base { | |
| public: | |
| ParagraphSlide0() { fName = "Paragraph0"; } | |
| void draw(SkCanvas* canvas) override { | |
| canvas->drawColor(SK_ColorWHITE); | |
| auto multiplier = 5.67; | |
| const char* text = "English English\n\nمرحبا بالعالم"; | |
| auto fontCollection = sk_make_sp<FontCollection>(); |
| import SwiftUI | |
| /// This is the main view of the application, analogous to the `MaterialApp` and `HomePage` widgets in the Flutter example. | |
| struct ContentView: View { | |
| var body: some View { | |
| NavigationStack { | |
| VStack { | |
| NavigationLink { | |
| TextFieldView() | |
| } label: { |
| import 'dart:async'; | |
| import 'dart:math' as math; | |
| import 'package:flutter/material.dart'; | |
| import 'package:flutter_animate/flutter_animate.dart'; | |
| void main() { | |
| runApp(const MyApp()); | |
| } |
| // Current | |
| class Opacity extends SingleChildRenderObjectWidget { | |
| /// Creates a widget that makes its child partially transparent. | |
| /// | |
| /// The [opacity] argument must be between zero and one, inclusive. | |
| const Opacity({ | |
| super.key, | |
| required this.opacity, | |
| this.alwaysIncludeSemantics = false, | |
| super.child, |
Download raw data: https://www.jetbrains.com/lp/devecosystem-2024/
Install DuckDB: https://duckdb.org/
Launch DuckDB in the command line:
duckdbThese are the team-text-input and a: text input issues that had the most reactions from January 11, 2025 to April 11, 2025.
| Title | Category | New reactions |
|---|---|---|
| Ability to change the keyboard language programmatically flutter/flutter#99606 | Keyboard language | 9 |
| Hot restart while keyboard is up leaves the keyboard up flutter/flutter#10713 | Software keyboard | 9 |
| Let iOS keyboard dismissal synchronize with scroll flutter/flutter#57609 | Sofware keyboard | 8 |
| import 'package:flutter/material.dart'; | |
| import 'package:flutter/gestures.dart'; | |
| import 'package:url_launcher/url_launcher.dart'; | |
| void main() { | |
| runApp(MyApp()); | |
| } | |
| class MyApp extends StatelessWidget { | |
| @override |