bevy_pages 0.4.1

Upgrade your Bevy UI experience with XML and an extended widget collection.
Documentation
<?xml version="1.0" encoding="utf-8"?>
<Page
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:noNamespaceSchemaLocation="../schema.xsd"
        justify-content="center"
        align-items="center"
>
    <Styles>
        <Style name="centerNode" justify-content="center" align-items="center" padding="10px"/>
    </Styles>

    <Node
            styles="centerNode"
            flex-direction="column"
            row-gap="24px"
            padding="32px"
    >
        <Text
                font-size="36px"
                color="white"
        >
            Counter
        </Text>

        <Text
                font-size="72px"
                color="#4CAF50"
                id="counter"
        >
            0
        </Text>

        <Node
                styles="centerNode"
                flex-direction="row"
                column-gap="16px"
        >
            <Button
                    styles="centerNode"
                    id="decrement"
                    width="64px"
                    height="64px"
            >
                <Text
                        font-size="32px"
                        color="white"
                >
                    -
                </Text>
            </Button>

            <Button
                    styles="centerNode"
                    id="reset"
                    width="120px"
                    height="64px"
            >
                <Text
                        font-size="20px"
                        color="white"
                >
                    Reset
                </Text>
            </Button>

            <Button
                    styles="centerNode"
                    id="increment"
                    width="64px"
                    height="64px"
            >
                <Text
                        font-size="32px"
                        color="white"
                >+
                </Text>
            </Button>
        </Node>
    </Node>
</Page>