simple_dart_modal_controller 0.0.7
simple_dart_modal_controller: ^0.0.7 copied to clipboard
Modal Controller
ModalController #
Read in other languages: English, Русский.
Description #
ModalPanel - a component for displaying modal windows.
ModalController - controller is control ModalPanel. Like all controllers, it is created and initialized during application start. Called via the modalController global variable.
Usage #
When initialized, it is added to the page in the body tag. When the showComponentModal(Component) method is called, it is displayed on the page.
Example #
modalController.init();
Dialog dialog = ...;
modalController.showComponentModal(dialog);