Skip to content

Instantly share code, notes, and snippets.

@marcossevilla
Created January 25, 2021 20:45
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 marcossevilla/4a92697c5187871dc62f433071004aa7 to your computer and use it in GitHub Desktop.
Save marcossevilla/4a92697c5187871dc62f433071004aa7 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
void main() {
runApp(
MaterialApp(
home: MyWidget(),
),
);
}
class MyWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Text(
'¡Construyamos algunos widgets!',
style: Theme.of(context).textTheme.headline4.copyWith(
color: Colors.red
),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment