Skip to content
This repository has been archived by the owner on Jul 12, 2024. It is now read-only.

Commit

Permalink
flutter analyze
Browse files Browse the repository at this point in the history
dart format .
  • Loading branch information
Addison1 committed Jun 26, 2024
1 parent 73158ab commit 0fe3835
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions lib/components/profile_about_me_card.dart
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,15 @@ class ProfileAboutMeCard extends StatelessWidget {
String aboutMeText = (aboutMe?.isEmpty ?? true)
? "No 'About Me' text provided yet. 💬"
: aboutMe!;
String verifiedText = (verifiedemail) ? "Verified Email" : "Unverified Email";
Color verifiedColor = (verifiedemail) ? const Color(0xFF2DD55B) : Colors.red;
String verifiedText =
(verifiedemail) ? "Verified Email" : "Unverified Email";
Color verifiedColor =
(verifiedemail) ? const Color(0xFF2DD55B) : Colors.red;

return LayoutBuilder(
builder: (context, constraints) {
double cardHeight = constraints.maxHeight > 550 ? 550 : constraints.maxHeight;
double cardHeight =
constraints.maxHeight > 550 ? 550 : constraints.maxHeight;
return SizedBox(
height: cardHeight,
width: MediaQuery.of(context).size.width,
Expand Down

0 comments on commit 0fe3835

Please sign in to comment.