81 lines
2.6 KiB
Dart
81 lines
2.6 KiB
Dart
// pages/about_page.dart
|
|
import 'package:flutter/material.dart';
|
|
|
|
class AboutPage extends StatelessWidget {
|
|
const AboutPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: const Text('Sobre o App'),
|
|
centerTitle: true,
|
|
backgroundColor: Colors.cyanAccent,
|
|
foregroundColor: Colors.black,
|
|
),
|
|
body: Container(
|
|
width: double.infinity,
|
|
padding: const EdgeInsets.all(24.0),
|
|
decoration: const BoxDecoration(
|
|
image: DecorationImage(
|
|
image: AssetImage('assets/images/background.png'),
|
|
fit: BoxFit.cover,
|
|
),
|
|
),
|
|
child: const Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
'Maker Book',
|
|
style: TextStyle(
|
|
fontSize: 28,
|
|
fontWeight: FontWeight.bold,
|
|
color: Colors.cyanAccent,
|
|
),
|
|
),
|
|
SizedBox(height: 12),
|
|
Text(
|
|
'Aplicativo educacional desenvolvido pela Maker Robotics para visualização de livros e conteúdos digitais exclusivos.',
|
|
style: TextStyle(fontSize: 16, color: Colors.white),
|
|
),
|
|
SizedBox(height: 24),
|
|
Row(
|
|
children: [
|
|
Icon(Icons.verified, color: Colors.greenAccent),
|
|
SizedBox(width: 8),
|
|
Text(
|
|
'Versão: 1.0.0',
|
|
style: TextStyle(fontSize: 16, color: Colors.white),
|
|
),
|
|
],
|
|
),
|
|
SizedBox(height: 16),
|
|
Wrap(
|
|
crossAxisAlignment: WrapCrossAlignment.center,
|
|
spacing: 8,
|
|
children: const [
|
|
Icon(Icons.email, color: Colors.white),
|
|
Text('Contato: makerroboticssistema@gmail.com',
|
|
style: TextStyle(fontSize: 16, color: Colors.white),
|
|
),
|
|
],
|
|
),
|
|
SizedBox(height: 32),
|
|
Text(
|
|
'Este aplicativo permite acesso seguro aos livros digitais adquiridos pela instituição ou aluno, com proteção contra captura de tela e login via QR Code.',
|
|
style: TextStyle(fontSize: 16, color: Colors.white),
|
|
),
|
|
Spacer(),
|
|
Center(
|
|
child: Text(
|
|
'© 2025 Maker Robotics',
|
|
style: TextStyle(color: Colors.white70, fontSize: 14),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|