Skip to content

Instantly share code, notes, and snippets.

@juancavallotti
Created February 2, 2023 20:40
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
class ExampleA extends StatelessWidget {
const ExampleA({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Container(
decoration: BoxDecoration(
border: Border.all(width: 1.0),
borderRadius: BorderRadius.circular(8.0)),
child: const Padding(
padding: EdgeInsets.all(20),
child: Text("Hello flutter World"),
),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment