-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
顾飞
committed
Jan 26, 2023
1 parent
32e3817
commit bca7d3f
Showing
24 changed files
with
321 additions
and
282 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,3 @@ | ||
import 'package:get/get.dart'; | ||
|
||
class ArchiveController extends GetxController { | ||
//TODO: Implement ArchiveController | ||
|
||
final count = 0.obs; | ||
@override | ||
void onInit() { | ||
super.onInit(); | ||
} | ||
|
||
@override | ||
void onReady() { | ||
super.onReady(); | ||
} | ||
|
||
@override | ||
void onClose() { | ||
super.onClose(); | ||
} | ||
|
||
void increment() => count.value++; | ||
} | ||
class ArchiveController extends GetxController {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// ignore_for_file: must_be_immutable | ||
|
||
import 'package:flutter/material.dart'; | ||
import 'package:get/get.dart'; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,3 @@ | ||
import 'package:get/get.dart'; | ||
|
||
class ModController extends GetxController { | ||
//TODO: Implement ModController | ||
|
||
final count = 0.obs; | ||
@override | ||
void onInit() { | ||
super.onInit(); | ||
} | ||
|
||
@override | ||
void onReady() { | ||
super.onReady(); | ||
} | ||
|
||
@override | ||
void onClose() { | ||
super.onClose(); | ||
} | ||
|
||
void increment() => count.value++; | ||
} | ||
class ModController extends GetxController {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import 'package:flutter/cupertino.dart'; | ||
|
||
class MyIcons { | ||
static IconData get archive => IconData(0xe867, fontFamily: 'iconfont'); | ||
static IconData get game => IconData(0xe640, fontFamily: 'iconfont'); | ||
static IconData get lock => IconData(0xe678, fontFamily: 'iconfont'); | ||
static IconData get mod => IconData(0xe63b, fontFamily: 'iconfont'); | ||
static IconData get tool => IconData(0xe606, fontFamily: 'iconfont'); | ||
static IconData get archive => const IconData(0xe867, fontFamily: 'iconfont'); | ||
static IconData get game => const IconData(0xe640, fontFamily: 'iconfont'); | ||
static IconData get lock => const IconData(0xe678, fontFamily: 'iconfont'); | ||
static IconData get mod => const IconData(0xe63b, fontFamily: 'iconfont'); | ||
static IconData get tool => const IconData(0xe606, fontFamily: 'iconfont'); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.