You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `off` method requires the same `ref` as specified on the corresponding `on` method. The event handler specified in the `on` method must be unique. If a common event handler is used for multiple events, an anonymous function can be used to invoke the common handler.
202
+
203
+
:::
204
+
201
205
### Data querying
202
206
203
207
Realtime Database provides support for basic querying of your data. When a reference node contains children, you can both order & limit the returned results.
Copy file name to clipboardExpand all lines: content/project-structure/app-resources.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ contributors:
7
7
8
8
The App_Resources folder contains platform-specific resources of the application (icons, configuration files, native code, etc.). An application that supports both Android and iOS would therefore contain a subfolder for each platform.
9
9
10
-
This page serves as a quick reference to understand how most settings in App_Resources affect behavior and the the look of a NativeScript app.
10
+
This page serves as a quick reference to understand how most settings in App_Resources affect the behavior and the look of a NativeScript app.
11
11
12
12
## Android specific resources
13
13
@@ -27,7 +27,7 @@ App_Resources/
27
27
└─ ... more
28
28
```
29
29
30
-
Values can be overriden on specific API levels by making the changes in the corresponding directories.
30
+
Values can be overridden on specific API levels by making the changes in the corresponding directories.
31
31
32
32
### Android app display name
33
33
@@ -62,7 +62,7 @@ To change the default color of the status bar, edit the `ns_primaryDark` color i
62
62
63
63
:::tip Note
64
64
65
-
The color will be applied on API21+ since lower API leves do not support custom status bar colors\*.
65
+
The color will be applied on API21+ since lower API levels do not support custom status bar colors\*.
66
66
67
67
:::
68
68
@@ -79,7 +79,7 @@ Various native elements have an accent color, which can be changed by setting th
79
79
80
80
:::tip Note
81
81
82
-
The color will be applied on API21+ since lower API leves do not support custom accent colors.
82
+
The color will be applied on API21+ since lower API levels do not support custom accent colors.
@@ -66,7 +66,7 @@ In Vue, when using html entities like the char codes above, use the `.decode` mo
66
66
67
67
::: details Sizing font images
68
68
Images have specific stretch options (`none`, `aspectFit`, `aspectFill`). Font icons on the other hand usually use `font-size` to control the size of the icon.
69
-
When using an `Image`, you can control the size with `font-size`, but you need to set `stretch="none"` for it to take effect. Setting `stretch` to anything other than `none` will cause the icon to be streched by measuring the image.
69
+
When using an `Image`, you can control the size with `font-size`, but you need to set `stretch="none"` for it to take effect. Setting `stretch` to anything other than `none` will cause the icon to be stretched by measuring the image.
70
70
:::
71
71
72
72
If an icon doesn't appear, or renders unintended characters, make sure you are using the correct font family and weight.
Copy file name to clipboardExpand all lines: content/setup/windows.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -128,7 +128,7 @@ ns doctor android
128
128
129
129
If you see **No issues were detected** then you have successfully set up your system.
130
130
131
-
Lastly, you will also want to [set up an android device or emulator](#setting-up-an-android-device-or-emulator).
131
+
Lastly, you will also want to [set up an android device](/guide/running#enable-usb-debugging-on-android-devices) or [emulator](/guide/running#android-emulators).
0 commit comments