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
Copy file name to clipboardExpand all lines: get-started/what-is-shiny.qmd
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ No need to learn JavaScript or front-end frameworks.
47
47
Shiny for Python comes fully equipped with everything you need to build a dashboard right out of the box, including a rich set of [input](/components/#inputs) and [output](/components/#outputs) components.
48
48
There is an entire [components gallery](/components/) to help you quickly build interactive applications.
49
49
50
-
[Layout](/layouts/) options let you organize your UI efficiently, while [built-in theming](/docs/ui-customize.qmd) (including [dark mode](/components/inputs/dark-mode)) ensures your app looks great with minimal effort.
50
+
[Layout options](/layouts/) let you organize your UI efficiently, while [built-in theming](/docs/ui-customize.qmd) (including [dark mode](/components/inputs/dark-mode)) ensures your app looks great with minimal effort.
51
51
52
52
Already have a brand guideline?
53
53
You can use [brand.yml](https://posit-dev.github.io/brand-yml/) to apply consistent branding, colors, and logos across your application.
@@ -136,7 +136,7 @@ Here's a full Shiny application in action, complete with [reactivity](/docs/reac
136
136
Hit the ground running with one of our [starter templates](/templates/), like the app above, by using `shiny create`.
137
137
138
138
There are templates for common use cases.
139
-
For example, [data dashboards](templates/dashboard/), [applications](/templates/database-explorer/), [streaming](/templates/monitor-database/) updates, or [data entry](/templates/survey/).
139
+
For example, [data dashboards](templates/dashboard/), [data applications](/templates/database-explorer/), [streaming updates](/templates/monitor-database/), or [data entry](/templates/survey/).
140
140
141
141
Use the terminal command below to [create and run](create-run.qmd) the same dashboard locally with `shiny create`, starting from a [template](/templates/).
While Shiny includes everything you need to build an app, is built on a foundation of web standards, making it highly [extensible](/docs/custom-component-one-off.qmd).
151
-
152
-
The Python inputs return regular HTML:
151
+
In fact, Shiny for Python is built on standard HTML
152
+
Here's an example of how the Shiny action button input returns a HTML`<button>`.
153
153
154
154
```python
155
155
>>>from shiny import ui
@@ -161,7 +161,7 @@ The Python inputs return regular HTML:
161
161
```
162
162
163
163
If you're versed in web programming, you can use Shiny to build [one-off custom components](/docs/custom-component-one-off.qmd) that integrate your favorite JavaScript framework directly from Python.
164
-
For more advanced needs, you can develop a [reusable component package](/docs/custom-components-pkg.qmd) or customize the [user interface](/docs/ui-customize) by incrementally adding [JavaScript](/docs/custom-component-one-off), [HTML](/docs/ui-html.html), or even [WebAssembly](/get-started/shinylive.qmd), without needing to learn complex build tools or frameworks.
164
+
For more advanced needs, you can develop a [reusable component package](/docs/custom-components-pkg.qmd) or [customize the user interface](/docs/ui-customize) by incrementally [adding JavaScript](/docs/custom-component-one-off), [HTML](/docs/ui-html.html), or even [WebAssembly](/get-started/shinylive.qmd), without needing to learn complex build tools or frameworks.
0 commit comments