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
- Host: GitHub
- URL: https://github.com/bastndev/apis_dart_flutter
- Owner: bastndev
- License: mit
- Created: 2023-12-03T03:26:08.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-22T00:30:57.000Z (about 2 years ago)
- Last Synced: 2025-04-02T16:50:33.796Z (12 months ago)
- Topics: api, api-flutter, api-practice, api-rest, apis, dart-api, flutter-api, practice-api
- Language: Dart
- Homepage: https://www.wasy.me/flutter/api
- Size: 22.5 MB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
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 |
> **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(),
);
}
}
```