Class UISystemSample
UI System 전체 기능 레퍼런스 샘플.
public sealed class UISystemSample : MonoBehaviour
- Inheritance
-
objectObjectComponentBehaviourMonoBehaviourUISystemSample
Remarks
[QuickStart]
[Inject] private IUIService _ui;
await _ui.Navigation.PushAsync(UIScreens.Inventory);
await _ui.Popup.ShowAsync(UIPopups.Settings);
var ok = await _ui.Dialog.ShowConfirmAsync("삭제하시겠습니까?");
_ui.Toast.Show("저장 완료");
await _ui.Loading.ShowWhileAsync(LoadDataAsync());
_ui.Theme.ApplyTheme(UIThemes.Dark);