fix word spelling

Signed-off-by: fufesou <shuanglongchen@yeah.net>
This commit is contained in:
fufesou 2023-05-12 16:29:10 +08:00
parent 59987f637c
commit bc6ed22006

View File

@ -24,13 +24,13 @@ class _InstallPageState extends State<InstallPage> {
void initState() { void initState() {
super.initState(); super.initState();
Get.put<DesktopTabController>(tabController); Get.put<DesktopTabController>(tabController);
const lable = "install"; const label = "install";
tabController.add(TabInfo( tabController.add(TabInfo(
key: lable, key: label,
label: lable, label: label,
closable: false, closable: false,
page: _InstallPageBody( page: _InstallPageBody(
key: const ValueKey(lable), key: const ValueKey(label),
))); )));
} }