This repository has been archived on 2024-04-18. You can view files and clone it, but cannot push or open issues or pull requests.
app/lib/state/mapState.dart

12 lines
255 B
Dart

import 'package:flutter/cupertino.dart';
class MapState extends ChangeNotifier {
bool _isLocationLock = false;
bool get followLocation => _isLocationLock;
toggleLocationLock() {
_isLocationLock = !_isLocationLock;
notifyListeners();
}
}