Skip to content

Instantly share code, notes, and snippets.

@juancavallotti
Created February 2, 2023 20:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juancavallotti/abb12959e57041177fec3581bdd2cf6d to your computer and use it in GitHub Desktop.
Save juancavallotti/abb12959e57041177fec3581bdd2cf6d to your computer and use it in GitHub Desktop.
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