24 lines
616 B
Dart
24 lines
616 B
Dart
// Author: fengshengxiong
|
|
// Date: 2024/5/7
|
|
// Description: 路由配置
|
|
|
|
class AppRoutes {
|
|
AppRoutes._();
|
|
|
|
/// SideA
|
|
static const splashA = '/splashA';
|
|
static const initialA = '/initialA';
|
|
static const uploadMethod = '/upload_method';
|
|
static const recordSound = '/record_sound';
|
|
static const changeVoice = '/change_voice';
|
|
static const playSound = '/play_sound';
|
|
static const about = '/about';
|
|
static const privacy = '/privacy';
|
|
static const terms = '/terms';
|
|
|
|
/// SideB
|
|
static const splashB = '/splashB';
|
|
static const initialB = '/initialB';
|
|
static const playMusic = '/play_music';
|
|
}
|