Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sFisher611/da1cdb6a5688c96e60603891a83bb78f to your computer and use it in GitHub Desktop.
Save sFisher611/da1cdb6a5688c96e60603891a83bb78f to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: Scaffold(
body: Center(
child: Text("data"),
),
),
);
}
}
@sFisher611
Copy link
Author

test

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment