fix: the grid cell border color didn't change after switch to new theme (#1564)

Co-authored-by: nathan <nathan@appflowy.io>
This commit is contained in:
Nathan.fooo 2022-12-11 09:06:16 +08:00 committed by GitHub
parent d487820963
commit 2a75ad144a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,7 +30,7 @@ class CellContainer extends StatelessWidget {
cellStateNotifier!..onEnter = rowStateNotifier.onEnter,
child: Selector<_CellContainerNotifier, bool>(
selector: (context, notifier) => notifier.isFocus,
builder: (context, isFocus, _) {
builder: (privderContext, isFocus, _) {
Widget container = Center(child: GridCellShortcuts(child: child));
if (accessoryBuilder != null) {