An open API service indexing awesome lists of open source software.

https://github.com/bastndev/apis_dart_flutter

API to practice Dart and flutter ๐Ÿ’™ + APIS
https://github.com/bastndev/apis_dart_flutter

api api-flutter api-practice api-rest apis dart-api flutter-api practice-api

Last synced: 6 months ago
JSON representation

API to practice Dart and flutter ๐Ÿ’™ + APIS

Awesome Lists containing this project

README

          












# 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
- [X] A completed task
- [X] ~~An uncompleted task~~

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

```