bubble-navigation
bubble-navigation copied to clipboard
Text cut
When apply custom font then text cut in bubble view.
Yes, I'm facing the same issue.
Same with custom fonts
a simple trick for this issue that is you need to add android:theme="@style/BubbleNavigationFontStyle"
attribute to BubbleNavigationConstraintView
BubbleNavigationFontStyle in styles.xml like this:
<style name="BubbleNavigationFontStyle" parent="AppTheme">
<item name="android:fontFamily">@font/vazir_light</item>
</style>
Thanks, using this my issue was solved.