c# - Android no effect Outline Color for Frame -


i use xamarin forms. use control frame. https://developer.xamarin.com/api/type/xamarin.forms.frame/

i set outlinecolor = color.white, on uwp works, on android no effect outline color frame. how can solve problem?

my code:

    frame myframe = new frame {     content = logoimage,     outlinecolor = color.white,     verticaloptions = layoutoptions.fill,     horizontaloptions = layoutoptions.fill  } 


Comments

Popular posts from this blog

c# - Update a combobox from a presenter (MVP) -

How to understand 2 main() functions after using uftrace to profile the C++ program? -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -