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

在复杂Widget树中构建一棵特定节点的简单树.

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
0
pub points
0%
popularity

Publisher

verified publisherybz.im

在复杂Widget树中构建一棵特定节点的简单树.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

collection, flutter

More

Packages that depend on easy_tree