altogic 1.0.6 altogic: ^1.0.6 copied to clipboard
Dart client for Altogic. Altogic is a backend application development and execution platform, enabling people and businesses to design, deploy and manage scalable applications.
/*
Flutter Altogic Client Package Examples:
- You can see the authentication basics with [Quickstart Guide](https://www.altogic.com/client/quick-start-authentication/with-flutter)
- You can try all methods and see the code blocks in the [Example/Test Application](https://altogic-flutter-example.netlify.app)
- Also you can see the basics with the [Example TO-DO Application](https://www.altogic.com/client/quick-start/quick-start-flutter)
For More Information About Altogic:
- 🚀 [Quick start](https://www.altogic.com/docs/quick-start)
- 📜 [Altogic Docs](https://www.altogic.com/docs)
- 💬 [Discord community](https://discord.gg/ERK2ssumh8)
- 📰 [Discussion forums](https://community.altogic.com)
*/
import 'package:flutter/material.dart';
void main() async {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return const MaterialApp();
}
}