ToneSnap_FSX_Flutter/lib/routes/app_routes.dart
fengshengxiong c7cbdb04be 个人曲库
2024-07-14 16:13:46 +08:00

26 lines
651 B
Dart

// Author: fengshengxiong
// Date: 2024/5/7
// Description: 路由配置
class AppRoutes {
AppRoutes._();
static const splash = '/splash';
/// SideA
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 initialB = '/initialB';
static const playPage = '/play_page';
static const album = '/album';
static const loveSongs = '/love_songs';
}