AndrewTran2018 / flutter-piggy-treeview

A common treeview for flutter
53 stars 15 forks source link

chạy project kiểu gì ko hiểu? #2

Open fukemy opened 6 years ago

fukemy commented 6 years ago

open bằng studio lỗi tùm lumlum, vào code thấy import 1 vài file dart mà tìm ko thấy? import 'BasicPage.dart';

AndrewTran2018 commented 6 years ago

Hello,

I provide sample code to guide users on how to use it. In general, Basic Page is a stateful widget that you can create on your own to use the TreeView.
Basic Page is a customized code -- it can not be shared.

Best,

fukemy commented 6 years ago

In treeView class contain method 'Util.getKey()' but i dont know where Util class contain what? Could u help?

AndrewTran2018 commented 6 years ago

@fukemy:

class Util { static String getKey() { List strings = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']; strings.shuffle(); String randId = strings.join(""); return randId; } }

fukemy commented 6 years ago

hard to implement with newbie.