altogic 1.0.6 copy "altogic: ^1.0.6" to clipboard
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.

example/lib/main.dart

/*

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();
  }
}
10
likes
120
pub points
22%
popularity

Publisher

verified publisheraltogic.com

Dart client for Altogic. Altogic is a backend application development and execution platform, enabling people and businesses to design, deploy and manage scalable applications.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

altogic_dart, app_links, flutter, shared_preferences, url_launcher

More

Packages that depend on altogic