Coder Social home page Coder Social logo

Comments (5)

asklar avatar asklar commented on May 27, 2024 2

Good request! Definitely would love to have specific jsx examples.

Right now codegen looks at the type of properties as well as whether the property is backed by a DependencyProperty in order to decide what to project; moreover sub-items need custom logic to map children to the right collection property.

(FYI you would not use the NavigationView.MenuItems property, you'd just create the NavigationViewItem/Header/Separator directly inside of the NavigationView tag)

This is all possible for NavigationView, I'll get back in a couple of days :) Keep the feedback coming!

from react-native-xaml.

achipa avatar achipa commented on May 27, 2024 1

Same here. As react-native-xaml is a codegen-based thin wrapper, I'd expect to have a very close to 1:1 mapping with existing xaml structures/code. For example if I had:

<Grid>
    <NavigationView>
        <NavigationView.MenuItems>
            <NavigationViewItemHeader Content="Main"/>
            <NavigationViewItem Content="Customers"/>
            <NavigationViewItem Content="Orders"/>
            <NavigationViewItemSeparator/>
            <NavigationViewItemHeader Content="Reports"/>
            <NavigationViewItem Content="Customers"/>
            <NavigationViewItem Content="Orders"/>
            <NavigationViewItem Content="Sales"/>
            <NavigationViewItemSeparator/>
            <NavigationViewItemHeader Content="Charts"/>
            <NavigationViewItem Content="Sales by Customer"/>
            <NavigationViewItem Content="Sales by Product"/>
            <NavigationViewItem Content="Sales by Date"/>
        </NavigationView.MenuItems>
    </NavigationView>
</Grid>

I would expect to end up with something like

<Grid>
    <NavigationView>
        <NavigationView.MenuItems>
            <NavigationViewItemHeader content={{string: "Main"}}/>
            <NavigationViewItem content={{string: "Customers"}}/>
            <NavigationViewItem content={{string: "Orders"}}/>
            <NavigationViewItemSeparator/>
            <NavigationViewItemHeader content={{string: "Reports"}}/>
            <NavigationViewItem content={{string: "Customers"}}/>
            <NavigationViewItem content={{string: "Orders"}}/>
            <NavigationViewItem content={{string: "Sales"}}/>
            <NavigationViewItemSeparator/>
            <NavigationViewItemHeader content={{string: "Charts"}}/>
            <NavigationViewItem content={{string: "Sales by Customer"}}/>
            <NavigationViewItem content={{string: "Sales by Product"}}/>
            <NavigationViewItem content={{string: "Sales by Date"}}/>
        </NavigationView.MenuItems>
    </NavigationView>

...which is not really doable right now (no apparent way of defining/adding NavigationView.MenuItems, for starters)

from react-native-xaml.

asklar avatar asklar commented on May 27, 2024

Good bug, thanks again for filing. I just got it to work!

image

from react-native-xaml.

asklar avatar asklar commented on May 27, 2024

@achipa @jeanmaried See USAGE.md

from react-native-xaml.

jeanmaried avatar jeanmaried commented on May 27, 2024

@asklar awesome! Thank you.

from react-native-xaml.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.