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.
 
 

13 lines
272 B

class AppConstants {
AppConstants.privateConstructor();
static final AppConstants instance = AppConstants.privateConstructor();
factory AppConstants() {
return instance;
}
final int pageSize = 20;
final int appHeight = 808;
final int appWidth = 375;
}