Skip to content

Instantly share code, notes, and snippets.

@rubywai
Created May 10, 2023 11:17
Show Gist options
  • Save rubywai/f0c5b413aeaf92c341c99800ce4381ef to your computer and use it in GitHub Desktop.
Save rubywai/f0c5b413aeaf92c341c99800ce4381ef to your computer and use it in GitHub Desktop.
//debug release profile
//assets file binary network
//container
// Material , Cupertino
//Stateless .Stateful
//row column wrap container stack
//listview gridview
import 'package:flutter/material.dart';
import 'package:flutter_ui_lesson/screens/first_screen.dart';
//asset file network memory
void main() {
runApp(const Home());
}
class Home extends StatelessWidget {
const Home({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: FirstScreen(),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment