In android, If you use a number as title in a segmentedbar item the app crash.
Not tested in iOS.

<SegmentedBar>
<SegmentedBar.items>
<SegmentedBarItem title="1" />
<SegmentedBarItem title="2" />
</SegmentedBar.items>
</SegmentedBar>
Perhaps this isn't the right way but i solved it with this little "hack" in this file.
/YOUR_APP_FOLDER/platforms/android/src/main/assets/app/tns_modules/ui/segmented-bar/segmented-bar.js
In line 141 replace "||" with "+".
tab.setIndicator(tabItem.title || ""); --> tab.setIndicator(tabItem.title + "");
In android, If you use a number as title in a segmentedbar item the app crash.
Not tested in iOS.
Perhaps this isn't the right way but i solved it with this little "hack" in this file.
In line 141 replace "||" with "+".
tab.setIndicator(tabItem.title || ""); --> tab.setIndicator(tabItem.title + "");