form_concierge 0.2.1 copy "form_concierge: ^0.2.1" to clipboard
form_concierge: ^0.2.1 copied to clipboard

An embeddable Flutter survey package on Cloudflare, featuring an API, an admin dashboard, and web forms built with Jaspr.

example/form_concierge_example.dart

import 'package:flutter/material.dart';
import 'package:form_concierge/form_concierge.dart';

void main() {
  runApp(const FormConciergeExample());
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: const Text('Form Concierge')),
        body: FormConciergeSurvey(
          client: Client('https://your-worker.example.com'),
          projectSlug: 'demo-project',
          surveySlug: 'customer-feedback',
          onAnonymousSession: (session) async {
            // Persist session.token and pass it back as anonymousToken.
          },
        ),
      ),
    );
  }
}
0
likes
150
points
357
downloads

Documentation

API reference

Publisher

verified publisherzoome.co.jp

Weekly Downloads

An embeddable Flutter survey package on Cloudflare, featuring an API, an admin dashboard, and web forms built with Jaspr.

Homepage
Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

crypto, flutter, form_concierge_client, image_picker

More

Packages that depend on form_concierge