Sonnat Project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
272 B

1 year ago
  1. class AppConstants {
  2. AppConstants.privateConstructor();
  3. static final AppConstants instance = AppConstants.privateConstructor();
  4. factory AppConstants() {
  5. return instance;
  6. }
  7. final int pageSize = 20;
  8. final int appHeight = 808;
  9. final int appWidth = 375;
  10. }