flutter icon indicating copy to clipboard operation
flutter copied to clipboard

Grida Flutter Support - Behind techs & packages

Results 14 flutter issues
Sort by recently updated
recently updated
newest added

- [ ] https://api.flutter.dev/flutter/material/LinearProgressIndicator-class.html - [ ] https://api.flutter.dev/flutter/dart-ui/Shadow-class.html - [ ] https://api.flutter.dev/flutter/painting/ResizeImage-class.html - [ ] https://api.flutter.dev/flutter/widgets/HtmlElementView-class.html - [ ] https://api.flutter.dev/flutter/material/IconButton-class.html - [ ] https://api.flutter.dev/flutter/material/InkWell-class.html - [ ] https://api.flutter.dev/flutter/material/InputChip-class.html - [x]...

5000+ Lines https://github.com/gridaco/flutter-builder/blob/main/packages/flutter/lib/material/icons.ts This almost takes up 666kb as js on npm. we can minimize this by exporting all types to .d.ts and having single dynamic function on js side.

this PR includes project re-write with [CoLI dart](https://github.com/bridgedxyz/CoLI) usage

Add Overflow box https://flutter.dev/docs/development/ui/layout/constraints

Since Flutter 2.0 stable is out, This library needs to be updated with some new widget support & dart 1.2 syntax support. The general dart null safety syntax shall be...

Feature request for api to add comments to each Buildable tree, and it's properties. This could provide developers' more understandability for the auto generated code. what this code does, and...

Colors.* support with code generator.

escape givven text if contains special characters such as $ or \n, \. refer: https://github.com/bridgedxyz/assistant/issues/21

When anonymous widget assigns to children property, and it's non list but a single object. It still build as-is. So, ``` dart Stack( children: Widget() ); ``` code something like...