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

A Flutter package for integrating LDtk levels into Flame Engine games

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flame/game.dart';
import 'game/platformer_game.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flame LDtk Example',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        primarySwatch: Colors.blue,
        useMaterial3: true,
      ),
      home: GameWidget(game: PlatformerGame()),
    );
  }
}
0
likes
0
points
30
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package for integrating LDtk levels into Flame Engine games

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

csv, flame, flutter

More

Packages that depend on flame_ldtk