fifty_narrative_engine 0.1.1 copy "fifty_narrative_engine: ^0.1.1" to clipboard
fifty_narrative_engine: ^0.1.1 copied to clipboard

Fifty Flutter Kit narrative processing engine for games and interactive applications

example/lib/main.dart

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

import 'app/narrative_demo_app.dart';
import 'core/di/service_locator.dart';

void main() async {
  WidgetsFlutterBinding.ensureInitialized();

  // Set up dependency injection
  await setupServiceLocator();

  runApp(const NarrativeEngineExampleApp());
}

/// Example app demonstrating fifty_narrative_engine capabilities.
class NarrativeEngineExampleApp extends StatelessWidget {
  const NarrativeEngineExampleApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Fifty Narrative Engine',
      theme: FiftyTheme.dark(),
      debugShowCheckedModeBanner: false,
      home: const NarrativeDemoApp(),
    );
  }
}
0
likes
150
points
22
downloads
screenshot

Publisher

unverified uploader

Weekly Downloads

Fifty Flutter Kit narrative processing engine for games and interactive applications

Homepage
Repository (GitHub)
View/report issues

Topics

#flutter #game #text-processing

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_web_plugins, plugin_platform_interface, web

More

Packages that depend on fifty_narrative_engine

Packages that implement fifty_narrative_engine