Add AndroidStyles.md file for documenting Android styles and themes

This commit is contained in:
Niels Gras
2024-05-15 15:33:56 +02:00
parent f06287d562
commit 0f2f174ea9

View File

@@ -0,0 +1,3 @@
# Creating Styles in android
Styles and themes on Android make it possible for you to separate the details of our app design from the UI structure and behavior, identical to stylesheets in web design. We will use this in our project to maintain a consistent style, so that we won't have to hardcode it to each element. A style is a set of attributes that determine the appearance of a single View. A style can define features like font color, font size, background color, and a lot more.