tiledjsonreader 0.0.8 copy "tiledjsonreader: ^0.0.8" to clipboard
tiledjsonreader: ^0.0.8 copied to clipboard

outdated

Reader of the Tiled file .json and your tileSet.json

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      home: MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}) : super(key: key);

  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Container(),
      floatingActionButton: FloatingActionButton(
        onPressed: _loadMap,
        tooltip: 'Load',
        child: Icon(Icons.add),
      ), // This trailing comma makes auto-formatting nicer for build methods.
    );
  }

  void _loadMap() {
    TiledJsonReader tiled = TiledJsonReader('assets/mapa1.json');
    tiled.read().then((value) {
      print(value);
    });
  }
}
5
likes
40
points
1.48k
downloads

Publisher

verified publisherrafaelbarbosatec.com

Weekly Downloads

Reader of the Tiled file .json and your tileSet.json

Repository (GitHub)

License

MIT (license)

Dependencies

flutter

More

Packages that depend on tiledjsonreader