added safe area and pemilih detail bottom sheet

This commit is contained in:
kicap
2023-11-04 04:44:26 +08:00
parent 212fb855f9
commit 6046943a7a
11 changed files with 310 additions and 94 deletions

View File

@ -55,9 +55,12 @@ class HalamanSurveiView extends StatelessWidget {
borderRadius: BorderRadius.circular(10),
),
child: model.imageBytes != null
? Image.memory(
model.imageBytes!,
fit: BoxFit.fill,
? ClipRRect(
borderRadius: BorderRadius.circular(10),
child: Image.memory(
model.imageBytes!,
fit: BoxFit.fill,
),
)
: const Icon(
Icons.credit_card_rounded,