Skip to content

Latest commit

 

History

History
72 lines (58 loc) · 1.9 KB

README.md

File metadata and controls

72 lines (58 loc) · 1.9 KB

API Dart- Flutter

  • 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

Markdown 24

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(),
    );
  }
}