fixed errors and removed dependency on flutterflowtheme. next working on getting it running.

This commit is contained in:
Joshua
2024-07-06 13:00:36 -06:00
parent 12481487d9
commit a568151b2c
29 changed files with 604 additions and 977 deletions
@@ -3,6 +3,8 @@ import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:provider/provider.dart';
import 'package:app/theme.dart';
import 'no_chats_model.dart';
export 'no_chats_model.dart';
@@ -59,11 +61,7 @@ class _NoChatsWidgetState extends State<NoChatsWidget> {
child: Text(
widget.title,
textAlign: TextAlign.center,
style: AppAppAppAppAppAppAppAppAppTheme.headlineSmall.override(
fontFamily: 'Outfit',
color: AppAppAppAppAppAppAppAppAppTheme.primaryText,
letterSpacing: 0,
),
style: AppTheme.headlineSmall,
),
),
Padding(
@@ -71,10 +69,7 @@ class _NoChatsWidgetState extends State<NoChatsWidget> {
child: Text(
widget.body,
textAlign: TextAlign.center,
style: AppAppAppAppAppAppAppAppAppTheme.labelMedium.override(
fontFamily: 'Readex Pro',
letterSpacing: 0,
),
style: AppTheme.labelMedium,
),
),
],