29 lines
791 B
Dart
29 lines
791 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import '../../../../common/theme/theme.dart';
|
|
|
|
class SyncInitialWidget extends StatelessWidget {
|
|
const SyncInitialWidget({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Icon(Icons.download_rounded, size: 48, color: Colors.grey.shade400),
|
|
SizedBox(height: 12),
|
|
Text(
|
|
'Siap untuk sinkronisasi',
|
|
style: AppStyle.lg.copyWith(fontWeight: FontWeight.w500),
|
|
),
|
|
SizedBox(height: 4),
|
|
Text(
|
|
'Tekan tombol mulai untuk mengunduh data',
|
|
style: AppStyle.sm.copyWith(color: Colors.grey.shade600),
|
|
textAlign: TextAlign.center,
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|