Skip to content

Latest commit

History

History
72 lines (58 loc) 路 1.9 KB

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: 鈥淚ntroduction 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(),
    );
  }
}