Last updated:
0 purchases
flutter widget demo
Demo project for self test
Features #
none
Getting started #
none
Usage #
null
class FancyScreen extends StatelessWidget{
const FancyScreen({Key? key}) : super(key: key);
@override
Widget build(BuildContext context){
return Scaffold(
body: Center(
child: const FancyContainer(
title: "Hello",
color1: Colors.green,
color2: Colors.red,
subtitle: "World"
)
)
);
}
}
copied to clipboard
Additional information #
null
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.