flutter_widget_demo 0.0.1
flutter_widget_demo: ^0.0.1 copied to clipboard
yolo
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"
)
)
);
}
}
Additional information #
null