32 lines
928 B
Dart
32 lines
928 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:pcastlivetv/components/nc_base_page.dart';
|
|
import 'package:velocity_x/velocity_x.dart';
|
|
|
|
class UserPage extends StatefulWidget {
|
|
const UserPage({super.key});
|
|
|
|
@override
|
|
State<UserPage> createState() => _UserPageState();
|
|
}
|
|
|
|
class _UserPageState extends State<UserPage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return NcBasePage(
|
|
body: Center(
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(60.0),
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
"Em breve todos os recursos da plataforma estarão disponíveis".text.bold.white.xl4.make(),
|
|
const SizedBox(height: 20),
|
|
"Estamos trabalhando para proporcionar a melhor experiência para você".text.bold.white.xl4.make(),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|