nimble_story_designer 1.0.9 copy "nimble_story_designer: ^1.0.9" to clipboard
nimble_story_designer: ^1.0.9 copied to clipboard

A fully-featured Flutter package for Instagram-style disappearing stories with a 3D cube viewer, customizable canvas creator, stickers, and interactive widgets.

example/lib/main.dart

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

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Nimble Story Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const HomeScreen(),
    );
  }
}

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

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Nimble Story Demo'),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: [
            ElevatedButton(
              onPressed: () {
                Navigator.push(
                  context,
                  MaterialPageRoute(
                    builder: (context) => const StoryCreatorScreen(),
                  ),
                );
              },
              child: const Text('Open Story Creator'),
            ),
            const SizedBox(height: 20),
            const Text(
              'A working example of Nimble Story Designer.',
              style: TextStyle(color: Colors.grey),
            ),
          ],
        ),
      ),
    );
  }
}
6
likes
160
points
205
downloads

Documentation

Documentation
API reference

Publisher

verified publisheratulpurohit.in

Weekly Downloads

A fully-featured Flutter package for Instagram-style disappearing stories with a 3D cube viewer, customizable canvas creator, stickers, and interactive widgets.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

cached_network_image, confetti, flutter, font_awesome_flutter, gal, google_fonts, image, image_picker, path_provider, provider, share_plus, url_launcher

More

Packages that depend on nimble_story_designer