#first commit

This commit is contained in:
cc
2026-01-11 19:42:22 +08:00
commit f70d6cace6
167 changed files with 6699 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
library cc_ui_kit;
export 'src/cc_primary_button.dart';

View File

@@ -0,0 +1,17 @@
import 'package:flutter/material.dart';
class CCPrimaryButton extends StatelessWidget {
final String text;
final VoidCallback onPressed;
const CCPrimaryButton({
super.key,
required this.text,
required this.onPressed,
});
@override
Widget build(BuildContext context) {
return ElevatedButton(onPressed: onPressed, child: Text(text));
}
}