사용하지 않는 파일 정리 전 백업 (Phase 10 완료 후 상태)

This commit is contained in:
JiWoong Sul
2025-08-29 15:11:59 +09:00
parent a740ff10c8
commit d916b281a7
333 changed files with 53617 additions and 22574 deletions

View File

@@ -15,7 +15,7 @@ class ShadcnCard extends StatefulWidget {
final bool elevated;
const ShadcnCard({
Key? key,
super.key,
required this.child,
this.padding,
this.margin,
@@ -24,7 +24,7 @@ class ShadcnCard extends StatefulWidget {
this.onTap,
this.hoverable = true,
this.elevated = false,
}) : super(key: key);
});
@override
State<ShadcnCard> createState() => _ShadcnCardState();
@@ -89,7 +89,7 @@ class ShadcnButton extends StatefulWidget {
final Color? textColor;
const ShadcnButton({
Key? key,
super.key,
required this.text,
this.onPressed,
this.variant = ShadcnButtonVariant.primary,
@@ -99,7 +99,7 @@ class ShadcnButton extends StatefulWidget {
this.loading = false,
this.backgroundColor,
this.textColor,
}) : super(key: key);
});
@override
State<ShadcnButton> createState() => _ShadcnButtonState();
@@ -336,7 +336,7 @@ class ShadcnInput extends StatefulWidget {
final bool required;
const ShadcnInput({
Key? key,
super.key,
this.label,
this.placeholder,
this.errorText,
@@ -352,7 +352,7 @@ class ShadcnInput extends StatefulWidget {
this.enabled = true,
this.maxLines = 1,
this.required = false,
}) : super(key: key);
});
@override
State<ShadcnInput> createState() => _ShadcnInputState();
@@ -480,12 +480,12 @@ class ShadcnBadge extends StatelessWidget {
final Widget? icon;
const ShadcnBadge({
Key? key,
super.key,
required this.text,
this.variant = ShadcnBadgeVariant.primary,
this.size = ShadcnBadgeSize.medium,
this.icon,
}) : super(key: key);
});
@override
Widget build(BuildContext context) {
@@ -663,12 +663,12 @@ class ShadcnSeparator extends StatelessWidget {
final EdgeInsetsGeometry? margin;
const ShadcnSeparator({
Key? key,
super.key,
this.direction = Axis.horizontal,
this.thickness = 1.0,
this.color,
this.margin,
}) : super(key: key);
});
@override
Widget build(BuildContext context) {
@@ -691,14 +691,14 @@ class ShadcnAvatar extends StatelessWidget {
final bool showBorder;
const ShadcnAvatar({
Key? key,
super.key,
this.imageUrl,
this.initials,
this.size = 40,
this.backgroundColor,
this.textColor,
this.showBorder = true,
}) : super(key: key);
});
@override
Widget build(BuildContext context) {
@@ -752,14 +752,14 @@ class ShadcnChip extends StatelessWidget {
final bool selected;
const ShadcnChip({
Key? key,
super.key,
required this.label,
this.backgroundColor,
this.textColor,
this.onDeleted,
this.avatar,
this.selected = false,
}) : super(key: key);
});
@override
Widget build(BuildContext context) {
@@ -821,13 +821,13 @@ class ShadcnProgress extends StatelessWidget {
final bool showLabel;
const ShadcnProgress({
Key? key,
super.key,
required this.value,
this.height = 8,
this.backgroundColor,
this.valueColor,
this.showLabel = false,
}) : super(key: key);
});
@override
Widget build(BuildContext context) {