-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f562079
commit 9134f6a
Showing
4 changed files
with
36 additions
and
2 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import 'package:flutter/material.dart'; | ||
import 'package:plaso_connect/constants/colors.dart'; | ||
|
||
Widget logoWidget({required Size size}) { | ||
return Container( | ||
margin: EdgeInsets.symmetric(vertical: 30), | ||
height: size.width * 0.35, | ||
width: size.width * 0.35, | ||
decoration: BoxDecoration( | ||
borderRadius: BorderRadius.circular(1000), | ||
image: DecorationImage( | ||
image: AssetImage("assets/icons/logo.png"), | ||
fit: BoxFit.fill, | ||
), | ||
boxShadow: [ | ||
BoxShadow( | ||
color: klightShadowForLight, | ||
offset: Offset(-4.0, -4.0), | ||
blurRadius: 7.0, | ||
), | ||
BoxShadow( | ||
color: kdarkShadowForLight, | ||
offset: Offset(4.0, 4.0), | ||
blurRadius: 7.0, | ||
), | ||
], | ||
color: Color(0xFFEFEEEE), | ||
), | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters