This is a really good library and I would like to ask if it is possible to use pixlui as the secondary library that wrapped inside from another library. I have an ui module I would like to produce and it will be using xml attribute declaration as example:
<xxx.my.component
android:layout_width="100dp"
android:layout_height="100dp">
</xxx.my.component>
is this possible to declare this in my custom module that takes my attribute element names into pixlui xml declaration elements directly?
<xxx.my.component
app:iconColor="#FFFFFF"
app:materialTabsPrimaryColor="YOUR_PRIMARY_COLOR"
app:accentColor="YOUR_ACCENT_COLOR"
app:typeface="@string/font1" //given that typeface is declared from pixlui
android:layout_width="100dp"
android:layout_height="100dp">
</xxx.my.component>
my question is, what does it need to be done in order to achieve this.
This is a really good library and I would like to ask if it is possible to use pixlui as the secondary library that wrapped inside from another library. I have an ui module I would like to produce and it will be using xml attribute declaration as example:
is this possible to declare this in my custom module that takes my attribute element names into pixlui xml declaration elements directly?
my question is, what does it need to be done in order to achieve this.