mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-04-24 14:47:13 -04:00
fix: fix actions fail
This commit is contained in:
parent
88423c1e86
commit
1c19bee773
2 changed files with 4 additions and 1 deletions
|
@ -9,7 +9,7 @@ import 'package:provider/provider.dart';
|
|||
|
||||
class HomeHotKeys extends StatelessWidget {
|
||||
final Widget child;
|
||||
const HomeHotKeys({required this.child});
|
||||
const HomeHotKeys({required this.child, Key? key}) : super(key: key);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
|
|
|
@ -46,6 +46,9 @@ flutter config --enable-linux-desktop
|
|||
# Fix any problems reported by flutter doctor
|
||||
flutter doctor
|
||||
|
||||
# install keybinder-3.0
|
||||
apt-get install keybinder-3.0
|
||||
|
||||
# Add the githooks directory to your git configuration
|
||||
printMessage "Setting up githooks."
|
||||
git config core.hooksPath .githooks
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue