Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion integration_test/app_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Future<void> main() async {
await waitEdaxServerResponse(tester);

// shortcut cheatsheet
await tester.tap(find.byIcon(FontAwesomeIcons.keyboard));
await tester.tap(find.byType(FaIcon).first);
await tester.pumpAndSettle();
expect(find.text(l10n.shortcutCheatsheet), findsOneWidget);
await tester.tapAt(const Offset(1, 1));
Expand Down
1 change: 0 additions & 1 deletion l10n.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
arb-dir: lib/l10n
template-arb-file: app_en.arb
output-localization-file: app_localizations.dart
synthetic-package: false # See: https://docs.flutter.dev/release/breaking-changes/flutter-generate-i10n-source
output-dir: lib/l10n # https://docs.flutter.dev/ui/accessibility-and-internationalization/internationalization#configuring-the-l10n-yaml-file
header: |
// dart format off
4 changes: 1 addition & 3 deletions lib/engine/edax_server.dart
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,7 @@ class StartEdaxServerParams {

@doNotStore
class EdaxServer {
EdaxServer({required final String dllPath, required final Level logLevel})
: _dllPath = dllPath,
_logger = Logger(level: logLevel);
EdaxServer({required this._dllPath, required final Level logLevel}) : _logger = Logger(level: logLevel);

final String _dllPath;
final Logger _logger;
Expand Down
10 changes: 5 additions & 5 deletions lib/home/home.dart
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ class HomeState extends State<Home> {
centerTitle: true,
actions: [
IconButton(
icon: const Icon(FontAwesomeIcons.keyboard),
icon: const FaIcon(FontAwesomeIcons.keyboard),
padding: const EdgeInsets.all(12),
onPressed: () async => showDialog<void>(
context: context,
Expand All @@ -214,25 +214,25 @@ class HomeState extends State<Home> {
}

Widget get _undoAllButton => IconButton(
icon: const Icon(FontAwesomeIcons.anglesLeft),
icon: const FaIcon(FontAwesomeIcons.anglesLeft),
iconSize: _undoOrRedoIconSize,
onPressed: () => context.read<BoardNotifier>().requestUndoAll(),
);

Widget get _undoButton => IconButton(
icon: const Icon(FontAwesomeIcons.angleLeft),
icon: const FaIcon(FontAwesomeIcons.angleLeft),
iconSize: _undoOrRedoIconSize,
onPressed: () => context.read<BoardNotifier>().requestUndo(),
);

Widget get _redoButton => IconButton(
icon: const Icon(FontAwesomeIcons.angleRight),
icon: const FaIcon(FontAwesomeIcons.angleRight),
iconSize: _undoOrRedoIconSize,
onPressed: () => context.read<BoardNotifier>().requestRedo(),
);

Widget get _redoAllButton => IconButton(
icon: const Icon(FontAwesomeIcons.anglesRight),
icon: const FaIcon(FontAwesomeIcons.anglesRight),
iconSize: _undoOrRedoIconSize,
onPressed: () => context.read<BoardNotifier>().requestRedoAll(),
);
Expand Down
6 changes: 3 additions & 3 deletions macos/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
FlutterMacOS: d0db08ddef1a9af05a5ec4b724367152bb0500b1
macos_secure_bookmarks: cff041c4b377fa00941bb901aaec4d27fac5edf2
screen_retriever_macos: 776e0fa5d42c6163d2bf772d22478df4b302b161
window_size: 339dafa0b27a95a62a843042038fa6c3c48de195
macos_secure_bookmarks: e096d8ec49de2d25ea47e1061b85e5f2f1520fef
screen_retriever_macos: 452e51764a9e1cdb74b3c541238795849f21557f
window_size: 4bd15034e6e3d0720fd77928a7c42e5492cfece9

PODFILE CHECKSUM: f429f80f5470aff39540e8333365097246b857cb

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading