diff --git a/app/lib/gen/assets.gen.dart b/app/lib/gen/assets.gen.dart index 9310206e..dec38e7f 100644 --- a/app/lib/gen/assets.gen.dart +++ b/app/lib/gen/assets.gen.dart @@ -94,7 +94,7 @@ class AssetGenImage { ImageRepeat repeat = ImageRepeat.noRepeat, Rect? centerSlice, bool matchTextDirection = false, - bool gaplessPlayback = false, + bool gaplessPlayback = true, bool isAntiAlias = false, String? package, FilterQuality filterQuality = FilterQuality.low, diff --git a/app/lib/pages/receive_page_controller.mapper.dart b/app/lib/pages/receive_page_controller.mapper.dart index edd486de..73f0f21a 100644 --- a/app/lib/pages/receive_page_controller.mapper.dart +++ b/app/lib/pages/receive_page_controller.mapper.dart @@ -35,12 +35,15 @@ class ReceivePageVmMapper extends ClassMapperBase { static const Field _f$isLink = Field('isLink', _$isLink); static bool _$showFullIp(ReceivePageVm v) => v.showFullIp; static const Field _f$showFullIp = Field('showFullIp', _$showFullIp); - static void Function() _$onAccept(ReceivePageVm v) => v.onAccept; - static const Field _f$onAccept = Field('onAccept', _$onAccept); - static void Function() _$onDecline(ReceivePageVm v) => v.onDecline; - static const Field _f$onDecline = Field('onDecline', _$onDecline); - static void Function() _$onClose(ReceivePageVm v) => v.onClose; - static const Field _f$onClose = Field('onClose', _$onClose); + static Function _$onAccept(ReceivePageVm v) => (v as dynamic).onAccept as Function; + static dynamic _arg$onAccept(f) => f(); + static const Field _f$onAccept = Field('onAccept', _$onAccept, arg: _arg$onAccept); + static Function _$onDecline(ReceivePageVm v) => (v as dynamic).onDecline as Function; + static dynamic _arg$onDecline(f) => f(); + static const Field _f$onDecline = Field('onDecline', _$onDecline, arg: _arg$onDecline); + static Function _$onClose(ReceivePageVm v) => (v as dynamic).onClose as Function; + static dynamic _arg$onClose(f) => f(); + static const Field _f$onClose = Field('onClose', _$onClose, arg: _arg$onClose); @override final MappableFields fields = const { diff --git a/app/lib/pages/tabs/settings_tab_vm.mapper.dart b/app/lib/pages/tabs/settings_tab_vm.mapper.dart index b6bc9510..82a31883 100644 --- a/app/lib/pages/tabs/settings_tab_vm.mapper.dart +++ b/app/lib/pages/tabs/settings_tab_vm.mapper.dart @@ -48,28 +48,38 @@ class SettingsTabVmMapper extends ClassMapperBase { static const Field _f$autoStartLaunchHidden = Field('autoStartLaunchHidden', _$autoStartLaunchHidden); static bool _$showInContextMenu(SettingsTabVm v) => v.showInContextMenu; static const Field _f$showInContextMenu = Field('showInContextMenu', _$showInContextMenu); - static void Function(BuildContext, ThemeMode) _$onChangeTheme(SettingsTabVm v) => v.onChangeTheme; - static const Field _f$onChangeTheme = Field('onChangeTheme', _$onChangeTheme); - static void Function(ColorMode) _$onChangeColorMode(SettingsTabVm v) => v.onChangeColorMode; - static const Field _f$onChangeColorMode = Field('onChangeColorMode', _$onChangeColorMode); - static void Function(BuildContext) _$onTapLanguage(SettingsTabVm v) => v.onTapLanguage; - static const Field _f$onTapLanguage = Field('onTapLanguage', _$onTapLanguage); - static void Function(BuildContext) _$onToggleAutoStart(SettingsTabVm v) => v.onToggleAutoStart; - static const Field _f$onToggleAutoStart = Field('onToggleAutoStart', _$onToggleAutoStart); - static void Function(BuildContext) _$onToggleAutoStartLaunchHidden(SettingsTabVm v) => v.onToggleAutoStartLaunchHidden; - static const Field _f$onToggleAutoStartLaunchHidden = - Field('onToggleAutoStartLaunchHidden', _$onToggleAutoStartLaunchHidden); - static void Function(BuildContext) _$onToggleShowInContextMenu(SettingsTabVm v) => v.onToggleShowInContextMenu; - static const Field _f$onToggleShowInContextMenu = - Field('onToggleShowInContextMenu', _$onToggleShowInContextMenu); - static void Function(BuildContext) _$onTapRestartServer(SettingsTabVm v) => v.onTapRestartServer; - static const Field _f$onTapRestartServer = Field('onTapRestartServer', _$onTapRestartServer); - static void Function(BuildContext) _$onTapStartServer(SettingsTabVm v) => v.onTapStartServer; - static const Field _f$onTapStartServer = Field('onTapStartServer', _$onTapStartServer); - static void Function() _$onTapStopServer(SettingsTabVm v) => v.onTapStopServer; - static const Field _f$onTapStopServer = Field('onTapStopServer', _$onTapStopServer); - static void Function(bool) _$onTapAdvanced(SettingsTabVm v) => v.onTapAdvanced; - static const Field _f$onTapAdvanced = Field('onTapAdvanced', _$onTapAdvanced); + static Function _$onChangeTheme(SettingsTabVm v) => (v as dynamic).onChangeTheme as Function; + static dynamic _arg$onChangeTheme(f) => f(); + static const Field _f$onChangeTheme = Field('onChangeTheme', _$onChangeTheme, arg: _arg$onChangeTheme); + static Function _$onChangeColorMode(SettingsTabVm v) => (v as dynamic).onChangeColorMode as Function; + static dynamic _arg$onChangeColorMode(f) => f(); + static const Field _f$onChangeColorMode = Field('onChangeColorMode', _$onChangeColorMode, arg: _arg$onChangeColorMode); + static Function _$onTapLanguage(SettingsTabVm v) => (v as dynamic).onTapLanguage as Function; + static dynamic _arg$onTapLanguage(f) => f(); + static const Field _f$onTapLanguage = Field('onTapLanguage', _$onTapLanguage, arg: _arg$onTapLanguage); + static Function _$onToggleAutoStart(SettingsTabVm v) => (v as dynamic).onToggleAutoStart as Function; + static dynamic _arg$onToggleAutoStart(f) => f(); + static const Field _f$onToggleAutoStart = Field('onToggleAutoStart', _$onToggleAutoStart, arg: _arg$onToggleAutoStart); + static Function _$onToggleAutoStartLaunchHidden(SettingsTabVm v) => (v as dynamic).onToggleAutoStartLaunchHidden as Function; + static dynamic _arg$onToggleAutoStartLaunchHidden(f) => f(); + static const Field _f$onToggleAutoStartLaunchHidden = + Field('onToggleAutoStartLaunchHidden', _$onToggleAutoStartLaunchHidden, arg: _arg$onToggleAutoStartLaunchHidden); + static Function _$onToggleShowInContextMenu(SettingsTabVm v) => (v as dynamic).onToggleShowInContextMenu as Function; + static dynamic _arg$onToggleShowInContextMenu(f) => f(); + static const Field _f$onToggleShowInContextMenu = + Field('onToggleShowInContextMenu', _$onToggleShowInContextMenu, arg: _arg$onToggleShowInContextMenu); + static Function _$onTapRestartServer(SettingsTabVm v) => (v as dynamic).onTapRestartServer as Function; + static dynamic _arg$onTapRestartServer(f) => f(); + static const Field _f$onTapRestartServer = Field('onTapRestartServer', _$onTapRestartServer, arg: _arg$onTapRestartServer); + static Function _$onTapStartServer(SettingsTabVm v) => (v as dynamic).onTapStartServer as Function; + static dynamic _arg$onTapStartServer(f) => f(); + static const Field _f$onTapStartServer = Field('onTapStartServer', _$onTapStartServer, arg: _arg$onTapStartServer); + static Function _$onTapStopServer(SettingsTabVm v) => (v as dynamic).onTapStopServer as Function; + static dynamic _arg$onTapStopServer(f) => f(); + static const Field _f$onTapStopServer = Field('onTapStopServer', _$onTapStopServer, arg: _arg$onTapStopServer); + static Function _$onTapAdvanced(SettingsTabVm v) => (v as dynamic).onTapAdvanced as Function; + static dynamic _arg$onTapAdvanced(f) => f(); + static const Field _f$onTapAdvanced = Field('onTapAdvanced', _$onTapAdvanced, arg: _arg$onTapAdvanced); static List _$themeModes(SettingsTabVm v) => v.themeModes; static const Field> _f$themeModes = Field('themeModes', _$themeModes, mode: FieldMode.member);