-
Notifications
You must be signed in to change notification settings - Fork 44
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
Showing
9 changed files
with
127 additions
and
28 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 +1 @@ | ||
v0.0.1 | ||
v0.0.2 |
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 +1,2 @@ | ||
- [x] 可以阅读 | ||
- [x] 修复更新错误 | ||
- [x] 可以选择分类 |
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
import 'package:flutter/material.dart'; | ||
import 'package:wax/basic/commons.dart'; | ||
import 'package:wax/screens/browser_screen.dart'; | ||
|
||
const catesNvMap = { | ||
"全部漫画": "", | ||
"同人誌": "5", | ||
"同人誌 - 漢化": "1", | ||
"同人誌 - 日語": "12", | ||
"同人誌 - English": "16", | ||
"同人誌 - CG畫集": "2", | ||
"同人誌 - Cosplay": "3", | ||
"單行本": "6", | ||
"單行本 - 漢化": "9", | ||
"單行本 - 日語": "13", | ||
"單行本 - English": "17", | ||
"雜誌&短篇": "7", | ||
"韓漫": "19", | ||
"韓漫 - 漢化": "20", | ||
"韓漫 - 生肉": "21", | ||
}; | ||
|
||
const catesVnMap = { | ||
"": "全部漫画", | ||
"5": "同人誌", | ||
"1": "同人誌 - 漢化", | ||
"12": "同人誌 - 日語", | ||
"16": "同人誌 - English", | ||
"2": "同人誌 - CG畫集", | ||
"3": "同人誌 - Cosplay", | ||
"6": "單行本", | ||
"9": "單行本 - 漢化", | ||
"13": "單行本 - 日語", | ||
"17": "單行本 - English", | ||
"7": "雜誌&短篇", | ||
"19": "韓漫", | ||
"20": "韓漫 - 漢化", | ||
"21": "韓漫 - 生肉", | ||
}; | ||
|
||
Future chooseCate(BuildContext context) async { | ||
return chooseMapDialog(context, title: "选择分类", values: catesNvMap); | ||
} |
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
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