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
| options | Set each option as a property directly on the `<swiper-container>` component. |
194
+
| mode | For different styles based upon the mode, you can target the slides with `.ios swiper-container` or `.md swiper-container` in your CSS. |
195
+
| pager | Use the `pagination` property instead. |
198
196
199
197
:::note
200
198
All properties available in Swiper Element can be found at <ahref="https://swiperjs.com/swiper-api#parameters"target="_blank"rel="noopener noreferrer">https://swiperjs.com/swiper-api#parameters</a>.
@@ -306,9 +304,7 @@ All methods and properties available on the Swiper instance can be found at <a h
306
304
Effects such as Cube or Fade can be used in Swiper Element with no additional imports, as long as you are using the bundled version of Swiper. For example, the below code will cause the slides to have a flip transition effect:
Copy file name to clipboardExpand all lines: docs/cli/livereload.md
+2-1
Original file line number
Diff line number
Diff line change
@@ -64,8 +64,9 @@ Remember, with the `--external` option, others on your Wi-Fi network will be abl
64
64
Live reload will use HTTP by default which will cause web APIs that require a secure context (like [web crypto](https://developer.mozilla.org/en-US/docs/Web/API/Web_Crypto_API)) to fail. To establish a secure context you can use the `--ssl` argument to use HTTPS.
65
65
66
66
For example, with an Angular application you can run the following to pass a certificate and private key and serve your app with HTTPS:
67
+
67
68
```shell
68
69
ionic capacitor run android --livereload --external --ssl -- --ssl-cert='server.crt' --ssl-key='server.key'
69
70
```
70
71
71
-
Using a self signed certificate and ensuring it is trusted by the device is a complicated topic and is covered in [this article](https://ionic.zendesk.com/hc/en-us/articles/11384425513623).
72
+
Using a self signed certificate and ensuring it is trusted by the device is a complicated topic and is covered in [this article](https://ionic.zendesk.com/hc/en-us/articles/11384425513623).
Copy file name to clipboardExpand all lines: docs/developing/hardware-back-button.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -338,8 +338,8 @@ It is recommended to check whether or not the user is on the root page prior to
338
338
339
339
The table below lists all of the internal hardware back button event handlers that Ionic Framework uses. The `Propagates` column notes whether or not that particular handler tells Ionic Framework to call the next back button handler.
Copy file name to clipboardExpand all lines: docs/layout/structure.md
-4
Original file line number
Diff line number
Diff line change
@@ -34,17 +34,14 @@ import Footer from '@site/static/usage/v7/footer/basic/index.md';
34
34
35
35
<Footer />
36
36
37
-
38
37
## Tabs Layout
39
38
40
39
A layout consisting of horizontal [tabs](../api/tabs.md) can be used to let the user quickly change between content views. Each tab can contain static content or a navigation stack by using a [router outlet](../api/router-outlet.md) or [nav](../api/nav.md).
41
40
42
-
43
41
import Tabs from '@site/static/usage/v7/tabs/router/index.md';
44
42
45
43
<Tabs />
46
44
47
-
48
45
## Menu Layout
49
46
50
47
A standard layout among mobile apps includes the ability to toggle a side [menu](../api/menu.md) by clicking a button or swiping it open from the side. Side menus are generally used for navigation, but they can contain any content.
@@ -53,7 +50,6 @@ import Menu from '@site/static/usage/v7/menu/basic/index.md';
53
50
54
51
<Menu />
55
52
56
-
57
53
## Split Pane Layout
58
54
59
55
A [split pane](../api/split-pane.md) layout has a more complex structure because it can combine the previous layouts. It allows for multiple views to be displayed when the viewport is above a specified breakpoint. If the device's screen size is below a certain size, the split pane view will be hidden.
Copy file name to clipboardExpand all lines: docs/native-faq.md
+4-5
Original file line number
Diff line number
Diff line change
@@ -5,9 +5,9 @@ slug: /native/faq
5
5
6
6
# Frequently Asked Question
7
7
8
-
## What is Capacitor?
8
+
## What is Capacitor?
9
9
10
-
Capacitor a native runtime built by the Ionic team that offers web developers the ability to deploy their web apps to a native device. Capacitor also exposing native device capabilities through JavaScript so developers could access features like native location services, filesystem access, or notifications as if they are interacting with any other JavaScript library.
10
+
Capacitor a native runtime built by the Ionic team that offers web developers the ability to deploy their web apps to a native device. Capacitor also exposing native device capabilities through JavaScript so developers could access features like native location services, filesystem access, or notifications as if they are interacting with any other JavaScript library.
11
11
12
12
## Permission Issues
13
13
@@ -17,9 +17,8 @@ If you're using a plugin, it may require adding additional permissions to your n
You need to manually add those permissions to the `info.plist` in your native project. Otherwise, calls to the native camera API will fail.
21
-
20
+
You need to manually add those permissions to the `info.plist` in your native project. Otherwise, calls to the native camera API will fail.
22
21
23
22
## Unexpected behaviour
24
23
25
-
If for some reason the plugin does not behave in a way that is unexpected, please [open an issue on our github repo](https://github.com/ionic-team/capacitor-plugins)! Providing a clear issue report along with a reproduction can help get your issue resolved.
24
+
If for some reason the plugin does not behave in a way that is unexpected, please [open an issue on our github repo](https://github.com/ionic-team/capacitor-plugins)! Providing a clear issue report along with a reproduction can help get your issue resolved.
0 commit comments