CKT String|Colors

This commit is contained in:
Carlos Correia
2026-07-15 19:13:15 +01:00
parent 3214a07779
commit a8af2c6845
35 changed files with 1390 additions and 688 deletions

View File

@@ -1,6 +1,8 @@
import 'package:flutter/material.dart';
import '../colors/app_colors.dart';
import '../widgets/app_gradients.dart';
import '../colors/app_gradients.dart';
import '../strings/terms_strings.dart';
import '../widgets/terms_content.dart';
class TermsScreen extends StatelessWidget {
@@ -20,14 +22,14 @@ class TermsScreen extends StatelessWidget {
elevation: 0,
scrolledUnderElevation: 0,
title: const Text(
'Termos de Serviço',
TermsStrings.pageTitle,
style: TextStyle(fontWeight: FontWeight.w900),
),
),
),
),
body: Container(
color: const Color(0xFFFAFAF7),
color: AppColors.background,
child: SafeArea(
child: SingleChildScrollView(
padding: const EdgeInsets.fromLTRB(20, 24, 20, 24),