From b2cb7d8581238da4ab06e979c3507d4eaeadbb1d Mon Sep 17 00:00:00 2001 From: mayankPrakashWavemaker Date: Tue, 30 Sep 2025 13:31:59 +0530 Subject: [PATCH 1/4] fixed container widget link --- website/src/components/widgets.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/components/widgets.js b/website/src/components/widgets.js index f62f75ab1..6a21d8bde 100644 --- a/website/src/components/widgets.js +++ b/website/src/components/widgets.js @@ -85,7 +85,7 @@ const WidgetTabItems = ({ activePlatformsSet, links }) => { "darkIcon": "/learn/img/containerDark.svg", "label": "Container", "body": " Container is an enclosing element that wraps the widgets placed within, mostly used for embedding partial pages ", - "overview": "/learn/app-development/widgets/container/container/", + "overview": "/learn/app-development/widgets/container/", "api": "https://www.wavemakeronline.com/app-runtime/latest/docs/classes/Container.html", "supportedPlatforms": ["web", "mobile"], "mobileStoryBook": "https://rn-components.onwavemaker.com/?path=/docs/containers-container--docs" From 632542fc7d823c3f3566e6cc4e345c8a47ed4316 Mon Sep 17 00:00:00 2001 From: mayankPrakashWavemaker Date: Tue, 30 Sep 2025 15:00:38 +0530 Subject: [PATCH 2/4] added sticky header doc --- learn/react-native/sticky-header.md | 69 ++++++++++++++++++ website/sidebars.json | 8 ++ .../release-notes/stickyHeaderExample.mp4 | Bin 0 -> 3361992 bytes 3 files changed, 77 insertions(+) create mode 100644 learn/react-native/sticky-header.md create mode 100644 website/static/learn/assets/release-notes/stickyHeaderExample.mp4 diff --git a/learn/react-native/sticky-header.md b/learn/react-native/sticky-header.md new file mode 100644 index 000000000..77858d816 --- /dev/null +++ b/learn/react-native/sticky-header.md @@ -0,0 +1,69 @@ +--- +title: "Creating Sticky Header" +id: "sticky-header" +sidebar_label: "Sticky Header" +--- +--- + +import stickyHeaderExample from '/learn/assets/release-notes/stickyHeaderExample.mp4'; + +A sticky header is a UI element that remains _pinned_ at the top of the screen while the rest of the content scrolls beneath it. It allows widgets to stay visible and accessible as users scrolls, ensuring easy access to important sections and actions without the need to scroll back. + +In below example, **Profiles** is configured to be _sticky_. + +