first commit
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
Widget buildInvoiceLogo({required ImageProvider image}) {
|
||||
return Container(
|
||||
height: 70,
|
||||
width: 70,
|
||||
decoration: BoxDecoration(
|
||||
shape: BoxShape.circle,
|
||||
image: DecorationImage(fit: BoxFit.cover, image: image),
|
||||
),
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user