fix(mobile): format waktu proses di halaman pencarian, beranda, dan favorit
This commit is contained in:
parent
be58c556c0
commit
102abd6a8f
|
|
@ -677,7 +677,7 @@ class _FavoritesScreenState extends State<FavoritesScreen>
|
|||
children: [
|
||||
_buildInfoChip(
|
||||
Icons.schedule_rounded,
|
||||
'${laundry.waktuProses}h proses',
|
||||
'${laundry.estimasiSelesai} proses',
|
||||
const Color(0xFF00897B),
|
||||
),
|
||||
const SizedBox(width: 8),
|
||||
|
|
|
|||
|
|
@ -1378,7 +1378,7 @@ class _ImprovedHomeScreenState extends State<ImprovedHomeScreen> {
|
|||
),
|
||||
const SizedBox(width: 3),
|
||||
Text(
|
||||
'${laundry.waktuProses}h',
|
||||
laundry.estimasiSelesai,
|
||||
style: const TextStyle(
|
||||
fontSize: 11,
|
||||
fontWeight: FontWeight.w600,
|
||||
|
|
|
|||
|
|
@ -1060,7 +1060,7 @@ class _SearchScreenState extends State<SearchScreen> {
|
|||
),
|
||||
const SizedBox(width: 4),
|
||||
Text(
|
||||
'${laundry.waktuProses} jam',
|
||||
laundry.estimasiSelesai,
|
||||
style: TextStyle(
|
||||
fontSize: 12,
|
||||
color: Colors.grey[600],
|
||||
|
|
|
|||
Loading…
Reference in New Issue