fix: divider colors for top and bottom border widgets (#1468)

This commit is contained in:
Richard Shiue 2022-11-22 20:01:16 +08:00 committed by GitHub
parent a8dc55b4f3
commit 5a8f1db5a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -219,7 +219,7 @@ class HomeTopBar extends StatelessWidget {
.padding(
horizontal: HomeInsets.topBarTitlePadding,
)
.bottomBorder(color: Colors.grey.shade300),
.bottomBorder(color: Theme.of(context).dividerColor),
);
}
}

View File

@ -27,7 +27,7 @@ class NewAppButton extends StatelessWidget {
return SizedBox(
height: HomeSizes.menuAddButtonHeight,
child: child,
).topBorder(color: Colors.grey.shade300);
).topBorder(color: Theme.of(context).dividerColor);
}
Future<void> _showCreateAppDialog(BuildContext context) async {

View File

@ -2,7 +2,7 @@ import 'package:flutter/material.dart';
export 'package:styled_widget/styled_widget.dart';
extension FlowyStyledWidget on Widget {
Widget bottomBorder({double width = 0.5, Color color = Colors.grey}) {
Widget bottomBorder({double width = 1.0, Color color = Colors.grey}) {
return Container(
decoration: BoxDecoration(
border: Border(
@ -13,7 +13,7 @@ extension FlowyStyledWidget on Widget {
);
}
Widget topBorder({double width = 0.5, Color color = Colors.grey}) {
Widget topBorder({double width = 1.0, Color color = Colors.grey}) {
return Container(
decoration: BoxDecoration(
border: Border(