core/june_core library

Classes

Engine
JuneInterface
JuneInterface allows any auxiliary package to be merged into the "June" class through extensions
RouterReportManager<T>

Enums

IntelligentManagement
JuneX by default disposes unused controllers from memory, Through different behaviors. IntelligentManagement.full IntelligentManagement.full is the default one. Dispose classes that are not being used and were not set to be permanent. In the majority of the cases you will want to keep this config untouched. If you new to JuneX then don't change this. IntelligentManagement.onlyBuilder only controllers started in init: or loaded into a Binding with June.lazyPut() will be disposed. If you use June.put() or June.putAsync() or any other approach, IntelligentManagement will not have permissions to exclude this dependency. With the default behavior, even widgets instantiated with "June.put" will be removed, unlike IntelligentManagement.onlyBuilders. IntelligentManagement.keepFactoryJust like IntelligentManagement.full, it will remove it's dependencies when it's not being used anymore. However, it will keep their factory, which means it will recreate the dependency if you need that instance again.

Properties

June → _JuneImpl
final

Functions

obscure<T>(T? value) → T?
This allows a value of type T or T? to be treated as a value of type T?.

Typedefs

StateUpdater<T> = T Function()