- Dependencies
dependencies:
cupertino_icons: ^1.0.2
dio: ^5.4.0
flutter:
sdk: flutter
Tip
Api 👷 https://pokeapi.co/
Left aligned Header | Right aligned Header | Center aligned Header |
---|---|---|
Content Cell | Content Cell | Content Cell |
Content Cell | Content Cell | Content Cell |
Content Cell | Content Cell | Content Cell |
20 jan 2024 Hey,everyone I'm @bastndev this is es a markdown, here is the English translation of your text: “Introduction to my project. I am working on a web application that aims to simplify the lives of developers. 😊
- Testing
- A completed task
-
An uncompleted task
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
theme: AppTheme().getTheme(),
home: const HomeScreen(),
);
}
}