easy_tree 0.0.1+2 copy "easy_tree: ^0.0.1+2" to clipboard
easy_tree: ^0.0.1+2 copied to clipboard

Build a simple tree of a specific node in a complex Widget tree.

example/lib/main.dart

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

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

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
          actions: [
            CupertinoButton(
              child: const Text("test"),
              onPressed: () {},
            ),
          ],
        ),
        body: Container(),
      ),
    );
  }
}
0
likes
150
pub points
1%
popularity

Publisher

verified publisherybz.im

Build a simple tree of a specific node in a complex Widget tree.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

collection, flutter

More

Packages that depend on easy_tree