• This project
    • Loading...
  • Sign in

常守达 / doublefeel_flutter · Files

Go to a project

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • doublefeel_flutter
  • lib
  • app
  • modules
  • user_onboarding
  • models
  • onboarding_option_data.dart
  • feat(today): 资源图替换
    2bf8d2c5
    by 常守达
    2026-06-25 13:47:47 +0800  
    Browse File »
onboarding_option_data.dart 221 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11
class OnboardingOptionData {
  const OnboardingOptionData({
    required this.label,
    required this.iconPath,
    this.exclusive = false,
  });

  final String label;
  final String iconPath;
  final bool exclusive;
}