Lazy Load

Lazy Load is scheme that details place(Description, Phone, Address, Website) will be load when one place is open. When you press refresh button at grid view its only load Draft(name, main_image, lat, lng, last_update) from place.

This scheme use for handle large data, my estimate is data place more than 200 item. You can enable and disable this LAZY_LOAD from file lib/data/app_config.dart, default value is false.

class AppConfig {
    . . .
    // if you place data more than 200 items please set TRUE
    static const bool LAZY_LOAD = false;
}

Last updated

Was this helpful?