Functional styling in Flutter like Swift UI
- ✅ Text styling
- ✅ Widget styling
- ✅ and more
This package is in development mode.
class HomePage extends StatelessWidget {
const HomePage({super.key});
@override
Widget build(context) {
return Scaffold(
body: 'hello world'
.text
.color(Colors.amber)
.fontFamily('family')
.render,
);
}
}
TODO: Tell users more about the package: where to find more information, how to contribute to the package, how to file issues, what response they can expect from the package authors, and more.