ToneSnap_FSX_Flutter/lib/routes/app_routes.dart
fengshengxiong 422a3f8802 first commit
2024-06-11 11:53:38 +08:00

19 lines
499 B
Dart

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