Bläddra i källkod

minor documentation improvements

Rodja Trappe 2 år sedan
förälder
incheckning
14c5f35315
2 ändrade filer med 7 tillägg och 4 borttagningar
  1. 5 2
      README.md
  2. 2 2
      main.py

+ 5 - 2
README.md

@@ -22,7 +22,6 @@ NiceGUI is available as [PyPI package](https://pypi.org/project/nicegui/), [Dock
 ## Features
 
 - browser-based graphical user interface
-- shared state between multiple browser windows
 - implicit reload on code change
 - standard GUI elements like label, button, checkbox, switch, slider, input, file upload, ...
 - simple grouping with rows, columns, cards and dialogs
@@ -31,13 +30,17 @@ NiceGUI is available as [PyPI package](https://pypi.org/project/nicegui/), [Dock
   - plot graphs and charts,
   - render 3D scenes,
   - get steering events via virtual joysticks
-  - annotate images
+  - annotate and overlay images
+  - interact with tables
+  - navigate foldable tree structures
 - built-in timer to refresh data in intervals (even every 10 ms)
 - straight-forward data binding to write even less code
 - notifications, dialogs and menus to provide state of the art user interaction
+- shared and individual web pages
 - ability to add custom routes and data responses
 - capture keyboard input for global shortcuts etc
 - customize look by defining primary, secondary and accent colors
+- live-cycle events and session data
 
 ## Installation
 

+ 2 - 2
main.py

@@ -600,11 +600,11 @@ shared_and_private_pages = '''#### Shared and Private Pages
 
 By default, pages created with the `@ui.page` decorator are "private".
 Their content is re-created for each client.
-Thus, the displayed ID changes when the browser reloads the page.
+Thus, in the example to the right, the displayed ID changes when the browser reloads the page.
 
 With `shared=True` you can create a shared page.
 Its content is created once at startup and each client sees the *same* elements.
-Thus, the displayed ID remains constant when the browser reloads the page.
+Here, the displayed ID remains constant when the browser reloads the page.
 
 #### Index page