Files
social-app/apps/lib/features/auth/ui/screens/auth_boot_screen.dart
T

27 lines
711 B
Dart
Raw Normal View History

import 'package:flutter/material.dart';
import '../../../../core/theme/design_tokens.dart';
import '../../../../shared/widgets/app_loading_indicator.dart';
class AuthBootScreen extends StatelessWidget {
const AuthBootScreen({super.key});
@override
Widget build(BuildContext context) {
return const Scaffold(
backgroundColor: AppColors.authBackgroundTop,
body: SafeArea(
child: Center(
child: AppLoadingIndicator(
variant: AppLoadingVariant.surface,
size: 28,
strokeWidth: 2.5,
color: AppColors.authPrimaryButton,
trackColor: AppColors.authPrimaryButtonDisabled,
),
),
),
);
}
}