Skip to content

Instantly share code, notes, and snippets.

@raphaelrss
Created May 23, 2023 00:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raphaelrss/3e269323fa6bee56e21a3dc0cecf2b23 to your computer and use it in GitHub Desktop.
Save raphaelrss/3e269323fa6bee56e21a3dc0cecf2b23 to your computer and use it in GitHub Desktop.
testappclass
import 'package:flutter/material.dart';
void main() {
runApp(TestApp());
}
class TestApp extends StatelessWidget{
@override
Widget build (BuildContext context){
return const MaterialApp(
home: Text('Título'),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment