add infinitely scroll up down in RomListPage

This commit is contained in:
cuu
2019-02-07 19:38:11 +08:00
parent cbb49f5f78
commit 8a205de3ca
6 changed files with 76 additions and 29 deletions

View File

@@ -31,11 +31,18 @@ type MyEmulator struct { // as leader of RomListPage and FavListPage, it's a Plu
FavPage *FavListPage
DeleteConfirmPage *UI.DeleteConfirmPage
EmulatorConfig *ActionConfig
SpeedMax int
SpeedTimeInter int
}
func NewMyEmulator() *MyEmulator{
p := &MyEmulator{}
p.SpeedMax = 5
p.SpeedTimeInter = 300
return p
}