This commit is contained in:
Chen Li
2025-08-12 13:36:42 +08:00
parent 8191bef32e
commit 130755f9e1
47 changed files with 3728 additions and 761 deletions

View File

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