Skip to content

Commit cb476a3

Browse files
committed
chore: add titles
1 parent f2cbb30 commit cb476a3

19 files changed

+76
-4
lines changed

Diff for: .vitepress/config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module.exports = {
22
lang: 'en-US',
3-
title: ' ',
3+
title: 'NativeScript',
44
description: 'NativeScript docs',
55

66
head: [['link', { rel: 'stylesheet', href: '/styles.css' }]],

Diff for: advanced-concepts.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
title: Advanced Concepts
3+
---
4+
15
## Adding ObjC/Swift code
26

37
- [USED REFERENCE] https://github.com/NativeScript/docs/blob/master/docs/guides/ios-source-code.md

Diff for: common-pitfalls.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
title: Common Pitfalls
3+
---
4+
15
### Layout Nesting
26

37
### Heavy work on main thread

Diff for: development-workflow.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
title: Development Workflow
3+
---
4+
15
- [REFERENCE] https://github.com/NativeScript/docs/blob/master/docs/start/cli-basics.md
26
- [REFERENCE] https://github.com/NativeScript/docs/blob/master/docs/tooling/angular-cli.md
37
- [REFERENCE] https://github.com/NativeScript/docs/blob/master/docs/tooling/visual-studio-code-extension.md

Diff for: environment-setup.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
title: Environment Setup
3+
---
4+
15
## Setting up your system
26

37
- [REFERENCE] https://github.com/NativeScript/docs/blob/master/docs/start/general-requirements.md

Diff for: interaction.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
title: Interaction
3+
---
4+
15
## Gestures
26

37
- [USED REFERENCE] https://github.com/NativeScript/docs/blob/master/docs/ui/gestures.md

Diff for: introduction.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
title: Introduction
3+
---
4+
15
- [REFERENCE] https://github.com/NativeScript/docs/blob/master/docs/start/introduction.md
26

37
The docs should not assume the experience level of the reader - clear examples and explanations.

Diff for: networking.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
title: Networking
3+
---
4+
15
### HTTP Get
26

37
The example demonstrates different ways, how we could receive content from a server while making HTTP GET request.

Diff for: performance.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
title: Performance
3+
---
4+
15
## Webpack/Bundle Optimisations
26

37
- [REFERENCE] https://github.com/NativeScript/docs/blob/master/docs/performance-optimizations/bundling-with-webpack.md

Diff for: plugins/background-http.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
title: Background HTTP
3+
---
4+
15
```javascript
26
ns plugin add @nativescript/background-http
37
```

Diff for: plugins/brightness.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
title: Brightness
3+
---
4+
15
```javascript
26
ns plugin add @nativescript/brightness
37
```

Diff for: plugins/camera.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
title: Camera
3+
---
4+
15
## Overview
26

37
Almost every mobile application needs the option to capture, save and share images. The NativeScript camera plugin was designed for the first two parts of the job (taking a picture and optionally saving to device storage).

Diff for: plugins/datetimepicker.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
title: DateTimePicker
3+
---
4+
15
A [NativeScript](https://www.nativescript.org) plugin that provides ui elements for picking date and time. The plugin provides UI elements for picking date and time - `DatePickerField`, `TimePickerField` and `DateTimePickerFields` - they are all NativeScript Views that show selected date and/or time and allow picking another after being tapped. There is also a `DateTimePicker` class which provides static methods `pickDate` and `pickTime` that can be called to show the same dialog picker as the fields.
26

37
## Screenshots

Diff for: plugins/developing-plugins.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
title: Developing Plugins
3+
---
4+
15
Plugin development deserves it's own section as well!
26

37
- https://github.com/NativeScript/docs/tree/master/docs/plugins

Diff for: plugins/index.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
title: Plugins
3+
---
4+
15
# Plugins are sweet!
26

37
- [@nativescript/background-http](background-http)

Diff for: releasing.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
title: Releasing
3+
---
4+
15
I think having a very detailed guide on getting an app out into the app stores is very important - it's a complex process, especially if doing it for the fist time. Lots of screenshots (though these can get outdated quickly) - and clear steps that are easy to follow. No jumping around too much, that is confusing!
26

37
- https://github.com/NativeScript/docs/tree/master/docs/tooling/publishing

Diff for: security.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
title: Security
3+
---

Diff for: styles.css

+8-3
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,15 @@
8181
--accent-color: var(--c-brand) !important;
8282
}
8383

84-
header.hero .nav-link:hover {
84+
.hero .nav-link:hover {
8585
background-color: var(--c-brand-light) !important;
8686
}
8787

88-
.title .logo {
89-
height: 35px !important;
88+
.nav-bar-title .logo {
89+
height: 1.8rem !important;
9090
}
91+
92+
/* hides site title next to the logo */
93+
.nav-bar-title {
94+
font-size: 0 !important;
95+
}

Diff for: ui-and-styling.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
title: UI & Styling
3+
---
4+
15
## Layouts
26

37
- [USED REFERENCE] https://github.com/NativeScript/docs/blob/master/docs/ui/layouts/layout.md

0 commit comments

Comments
 (0)