Skip to content

Instantly share code, notes, and snippets.

@jeckymodi
Last active October 23, 2021 08:20
Show Gist options
  • Save jeckymodi/81a27c636dcb789114ac65f622895d02 to your computer and use it in GitHub Desktop.
Save jeckymodi/81a27c636dcb789114ac65f622895d02 to your computer and use it in GitHub Desktop.
Provider file
import 'package:flutter/cupertino.dart';
class PageNotifier with ChangeNotifier {
double _currentPage = 0;
double get currentPage => _currentPage;
set setCurrentPage(val) {
_currentPage = val;
notifyListeners();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment