[mob][photos] Change copy

This commit is contained in:
ashilkn 2024-08-30 18:19:11 +05:30
parent c6ec5cf645
commit d2459016f1

View File

@ -334,8 +334,8 @@ class FileAppBarState extends State<FileAppBar> {
padding: EdgeInsets.all(8), padding: EdgeInsets.all(8),
), ),
shouldLoopVideo shouldLoopVideo
? const Text("Video loop on") ? const Text("Loop video on")
: const Text("Video loop off"), : const Text("Loop video off"),
], ],
), ),
), ),
@ -362,7 +362,7 @@ class FileAppBarState extends State<FileAppBar> {
} else if (value == 6) { } else if (value == 6) {
await _onTapGuestView(); await _onTapGuestView();
} else if (value == 7) { } else if (value == 7) {
_onToggleVideoLoop(); _onToggleLoopVideo();
} }
}, },
), ),
@ -371,7 +371,7 @@ class FileAppBarState extends State<FileAppBar> {
return _actions; return _actions;
} }
_onToggleVideoLoop() { _onToggleLoopVideo() {
Configuration.instance.setShouldLoopVideo(!shouldLoopVideo); Configuration.instance.setShouldLoopVideo(!shouldLoopVideo);
setState(() { setState(() {
_reloadActions = true; _reloadActions = true;