This commit is contained in:
jantunesmesias 2024-08-08 15:53:59 -03:00
parent d26eb5d8fa
commit 1e997a6de6
1 changed files with 14 additions and 7 deletions

View File

@ -93,9 +93,9 @@ class _RegisiterVistorTemplateComponentWidgetState
return false; return false;
} }
if (_isVisitorRegistered) { // if (_isVisitorRegistered) {
return false; // return false;
} // }
return true; return true;
} }
@ -271,10 +271,17 @@ class _RegisiterVistorTemplateComponentWidgetState
.labelSmall .labelSmall
.override( .override(
fontFamily: 'Nunito', fontFamily: 'Nunito',
color: Color.alphaBlend( color: Theme.of(context)
Colors.white .brightness ==
.withOpacity(0.7), Brightness.dark
Colors.red), ? Color.alphaBlend(
Colors.white
.withOpacity(0.7),
Colors.red)
: Color.alphaBlend(
Colors.black
.withOpacity(0.25),
Colors.red),
fontSize: 13.0, fontSize: 13.0,
letterSpacing: 0.0, letterSpacing: 0.0,
)), )),