xamarin.forms - Aligning a Frame in Xamarin Forms -
how modify height of frame layout. have tried set heightrequest frame, doesnt work. please check below , attached image.
frame
frame frame = new frame() { hasshadow = false, margin = new thickness(10, 0, 0, 10), backgroundcolor = color.fromhex("#cdd0d1") };
label
label tag = new label() { textcolor = color.black, fontsize = 14, }; frame.content = tag;
expected output: excepted output should rectangle frame instead of square.
Comments
Post a Comment