Fix dividers
This commit is contained in:
parent
1e4d7d60e7
commit
3506b2962d
3 changed files with 8 additions and 9 deletions
|
@ -191,7 +191,7 @@ const Color strokeMutedDark = Color.fromRGBO(255, 255, 255, 0.24);
|
|||
const Color strokeFaintDark = Color.fromRGBO(255, 255, 255, 0.16);
|
||||
const Color strokeFainterDark = Color.fromRGBO(255, 255, 255, 0.08);
|
||||
const Color blurStrokeBaseDark = Color.fromRGBO(255, 255, 255, 0.90);
|
||||
const Color blurStrokeFaintDark = Color.fromRGBO(255, 255, 255, 0.08);
|
||||
const Color blurStrokeFaintDark = Color.fromRGBO(255, 255, 255, 0.06);
|
||||
const Color blurStrokePressedDark = Color.fromRGBO(255, 255, 255, 0.50);
|
||||
|
||||
// Other colors
|
||||
|
|
|
@ -241,9 +241,8 @@ class _AlbumParticipantsPageState extends State<AlbumParticipantsPage> {
|
|||
isLastItem
|
||||
? const SizedBox.shrink()
|
||||
: DividerWidget(
|
||||
dividerType: DividerType.solid,
|
||||
bgColor:
|
||||
getEnteColorScheme(context).blurStrokeFaint,
|
||||
dividerType: DividerType.menu,
|
||||
bgColor: getEnteColorScheme(context).fillFaint,
|
||||
),
|
||||
],
|
||||
);
|
||||
|
|
|
@ -139,7 +139,7 @@ class _ShareCollectionPageState extends State<ShareCollectionPage> {
|
|||
),
|
||||
DividerWidget(
|
||||
dividerType: DividerType.menu,
|
||||
bgColor: getEnteColorScheme(context).blurStrokeFaint,
|
||||
bgColor: getEnteColorScheme(context).fillFaint,
|
||||
),
|
||||
MenuItemWidget(
|
||||
captionedTextWidget: const CaptionedTextWidget(
|
||||
|
@ -163,7 +163,7 @@ class _ShareCollectionPageState extends State<ShareCollectionPage> {
|
|||
[
|
||||
DividerWidget(
|
||||
dividerType: DividerType.menu,
|
||||
bgColor: getEnteColorScheme(context).blurStrokeFaint,
|
||||
bgColor: getEnteColorScheme(context).fillFaint,
|
||||
),
|
||||
MenuItemWidget(
|
||||
captionedTextWidget: const CaptionedTextWidget(
|
||||
|
@ -267,8 +267,8 @@ class EmailItemWidget extends StatelessWidget {
|
|||
isBottomBorderRadiusRemoved: true,
|
||||
),
|
||||
DividerWidget(
|
||||
dividerType: DividerType.solid,
|
||||
bgColor: getEnteColorScheme(context).blurStrokeFaint,
|
||||
dividerType: DividerType.menu,
|
||||
bgColor: getEnteColorScheme(context).fillFaint,
|
||||
),
|
||||
],
|
||||
);
|
||||
|
@ -294,7 +294,7 @@ class EmailItemWidget extends StatelessWidget {
|
|||
),
|
||||
DividerWidget(
|
||||
dividerType: DividerType.menu,
|
||||
bgColor: getEnteColorScheme(context).blurStrokeFaint,
|
||||
bgColor: getEnteColorScheme(context).fillFaint,
|
||||
),
|
||||
],
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue