flutterxel 0.0.11 copy "flutterxel: ^0.0.11" to clipboard
flutterxel: ^0.0.11 copied to clipboard

Flutter runtime plugin for a Pyxel-compatible engine backed by Rust FFI.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'agent_map/agent_map_scene.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: const Text('flutterxel agent map')),
        body: const Center(child: AgentMapScene()),
      ),
    );
  }
}
0
likes
140
points
105
downloads

Publisher

unverified uploader

Weekly Downloads

Flutter runtime plugin for a Pyxel-compatible engine backed by Rust FFI.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

ffi, flutter, image, plugin_platform_interface

More

Packages that depend on flutterxel

Packages that implement flutterxel