edmaxlabs_core 2.0.0 copy "edmaxlabs_core: ^2.0.0" to clipboard
edmaxlabs_core: ^2.0.0 copied to clipboard

Official Flutter package for EdmaxLabs projects. Provides realtime database, cloud functions, and storage.

example/lib/main.dart

import 'package:edmaxlabs_core/edmaxlabs_core.dart';
import 'package:example/screens/database.dart';
import 'package:flutter/material.dart';

void main() {
  final options = EdmaxLabsOptions(
    token: "xxxxx",
    project: "xxxxxxx",
    authToken: "xxxxx",
  );
  EdmaxLabs.initialize(options);
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Demo',
      theme: ThemeData(colorScheme: .fromSeed(seedColor: Colors.deepPurple)),
      home: Database(),
    );
  }
}
1
likes
140
points
--
downloads

Publisher

unverified uploader

Official Flutter package for EdmaxLabs projects. Provides realtime database, cloud functions, and storage.

Homepage
Repository (GitHub)

Documentation

Documentation
API reference

License

MIT (license)

Dependencies

dio, socket_io_client, socket_io_common, uuid

More

Packages that depend on edmaxlabs_core