This commit is contained in:
2025-06-18 11:28:37 +08:00
commit 86d9daf90a
35 changed files with 1566 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
import 'package:flutter/material.dart';
class AIAvatar extends StatelessWidget {
final double width;
final double height;
const AIAvatar({
super.key,
this.width = 120,
this.height = 140,
});
@override
Widget build(BuildContext context) {
return SizedBox(
width: width,
height: height,
child: Image.asset(
'assets/images/avatar.png',
fit: BoxFit.contain,
),
);
}
}