Rein Gundersen Bentdal
Rein Gundersen Bentdal
Sometimes it is inconvenient to use the trackpad. For example if using external keyboard and mouse. Would be nice if it would also support resizing and docking with arrows for...
The following methods need support for animation - [ ] aspectRatio - [ ] center - [ ] fittedBox - [ ] fractionallySizedBox - [ ] Card
The wiki, in its current state, is not very helpful and lacks a good structure.
`styled_widget` uses InheritedWidget to pass animations down to children. This means defined animations in one Widget is passed down to all later children of the widget. `styled_widget` also uses InheritedWidget...
A possible feature for people enjoying the speed of coding with `styled_widget` but want the code to eventually look like native flutter code.
Replaces the [Text] widget with a [EditableText] widget while maintaining the same style ```dart Text('some text') .editable() ```
- [ ] [AnimatedBorderRadius] debug [topLeft], [topRight], [bottomLeft], [bottomRight] - [ ] [AnimatedTransform] degub [origin], [transformHitTest] ? - [ ] [AnimatedDecorationBox] debug [position] ? ...
I love the simplicity of this editor! I am a coder and am using VS Code. That editor has a feature where, if you select the `opt` key on Mac...
I have made a new package called `styled_widget` which uses the new dart extension feature added in dart version 2.6.0. This is just an early concept. GitHub: https://github.com/ReinBentdal/styled_widget Pub: https://pub.dev/packages/styled_widget...
Was thinking about ways to implement `ThemeData` into `Division`. ```dart // TxtStyle.themeData.create(dynamic key) TxtStyle.themeData.create('button') ..borderRadius(all: 10) ..elevation(10) etc... // and maybe ..primaryColor(Colors.orange) etc... Widget build(BuildContext context) { ... Txt( 'some...