celest 0.4.0-dev.2 copy "celest: ^0.4.0-dev.2" to clipboard
celest: ^0.4.0-dev.2 copied to clipboard

The Flutter cloud platform. Celest enables you to build your entire backend in Dart.

example/lib/main.dart

import 'package:celest_backend/client.dart';
import 'package:celest_backend/models/person.dart';
import 'package:flutter/material.dart';

void main() {
  celest.init();
  runApp(const MyApp());
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Hello Celest'),
        ),
        body: Center(
          child: FutureBuilder(
            future: celest.functions.greeting.sayHello(
              person: const Person(name: 'Celest'),
            ),
            builder: (_, snapshot) => switch (snapshot) {
              AsyncSnapshot(:final data?) => Text(data),
              AsyncSnapshot(:final error?) =>
                Text('${error.runtimeType}: $error'),
              _ => const CircularProgressIndicator(),
            },
          ),
        ),
      ),
    );
  }
}
6
likes
0
pub points
71%
popularity

Publisher

verified publishercelest.dev

The Flutter cloud platform. Celest enables you to build your entire backend in Dart.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

async, celest_auth, celest_core, chunked_stream, meta, shelf, shelf_router

More

Packages that depend on celest