Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Want a textView or textField in Native Script XML without bottom border

Tags:

nativescript

The default textbox has a bottom border. How can I get a textView or textField in Native Script XML without that bottom border?

like image 467
Piyush Godara Avatar asked Dec 24 '22 05:12

Piyush Godara


1 Answers

Based on the suggestion by Nikolay, the following should do it in the stylesheet

background-color: transparent;
border-color: transparent;
like image 113
tmez Avatar answered Dec 28 '22 06:12

tmez