Layout Design Question #1185
-
|
Hello. I am experimenting with FluentUI, and really like the idea of building a desktop or webapp with it. I am struggling with recreating a layout I have in a standard Material app though... I'm trying to create a three-panel layout for a quote builder application (picture of desired layout below):
How can I achieve this design using FluentUI using its NavigationView top-level layout widget? I can create a sample app and get the menu and form page changing, but I dont know how to get the static/fixed preview on the right side. Thank you. BG |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
I believe your design is achievable by using the fluent UI library:
You can see more info from the example app about each widget mentioned here. |
Beta Was this translation helpful? Give feedback.

I believe your design is achievable by using the fluent UI library:
NavigationAppBar()in navigation view to achieve the top app barNavigationPane()in navigation view to achieve (1) Left PanelListTile.selectableinListViewto achieve (2) Middle PanelselectedIndexof the list view changes, return the corresponding widget from your static List[selectedIndex], to achieve (3) Right PanelYou can see more info from the example app about each widget mentioned here.