Files
sf-app-platform/lib/payments/view/screens/loading_google_screen.dart

26 lines
688 B
Dart

import 'package:flutter/material.dart';
import 'package:flutter_svg/flutter_svg.dart';
class LoadingGoogleScreen extends StatelessWidget{
const LoadingGoogleScreen({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
body: Expanded(
child: Center(
child: Column(
spacing: 50,
children: [
Spacer(flex: 8),
Text("Continuar con Google", style: TextStyle(fontWeight: FontWeight.bold, fontSize: 30)),
CircularProgressIndicator(),
Text("Redirigiendo a Google"),
Spacer(flex: 10)
],
),
)
),
);
}
}