Skip to content
This repository was archived by the owner on Nov 17, 2022. It is now read-only.

Fix: the Grammer correction #1959

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#Default GitHub
Host github.com
HostName github.com
User git
IdentityFile ~/.ssh/id_rsa_COMPANY
HostName github.com
User git
IdentityFile ~/.ssh/id_rsa_COMPANY
2 changes: 1 addition & 1 deletion docs/core-concepts/application-architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ These modules are used as the root for UI containers. Currently, there are only
* The app container - it is only one. You set its root module by passing it to the `Application.run()` method.
* Modal view containers - You can have a lot of these. You set a modal view's root module by passing it to the `showModal()` method of any UI component.

A root module can have only one component at the root of its content. You can put virtually any UI component as a root, but the most commonly used components are the one that can have children - the layouts, `TabView`, `SideDrawer` or `Frame`. The `Frame` component can't have children, but it can display and navigate between page modules.
A root module can have only one component at the root of its content. You can put virtually any UI component as a root, but the most commonly used components are the ones that can have children - the layouts, `TabView`, `SideDrawer` or `Frame`. The `Frame` component can't have children, but it can display and navigate between page modules.

Note that the root module will be loaded regardless of navigations until its UI container disappears. This basically means that the app root module will always be loaded. A modal view root module will be unloaded when the modal view is closed.

Expand Down