Table of Contents

Class UISystemSample

Namespace
Framework.Samples.UI
Assembly
Assembly-CSharp.dll

UI System 전체 기능 레퍼런스 샘플.

public sealed class UISystemSample : MonoBehaviour
Inheritance
object
Object
Component
Behaviour
MonoBehaviour
UISystemSample

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);