auth changes

This commit is contained in:
mohammad
2024-08-08 12:47:12 +03:00
parent 73d49d5518
commit 8e8f810d1e
7 changed files with 35 additions and 44 deletions

View File

@ -18,9 +18,8 @@ class WebAppBar extends StatelessWidget {
children: [
Expanded(
child: Text(
title!,style: const TextStyle(
fontSize: 30,
color: Colors.white),)
title!,
style: Theme.of(context).textTheme.headlineLarge,)
),
if (body != null)
Expanded(
@ -49,7 +48,7 @@ class WebAppBar extends StatelessWidget {
),
),
const SizedBox(width: 10,),
const Text('mohamamd alnemer ',style: TextStyle(fontSize: 16,color: Colors.white),),
Text('mohamamd alnemer ',style:Theme.of(context).textTheme.bodyLarge ,),
],
)
],