修改选择器样式

This commit is contained in:
czz
2025-06-06 09:18:06 +08:00
parent 682728eb1e
commit bc86cf7d78
94 changed files with 3929 additions and 2299 deletions

View File

@@ -0,0 +1,15 @@
// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'score_controller.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
ScoreModel _$ScoreModelFromJson(Map<String, dynamic> json) =>
ScoreModel()..score = (json['score'] as num?)?.toInt();
Map<String, dynamic> _$ScoreModelToJson(ScoreModel instance) =>
<String, dynamic>{
'score': instance.score,
};