Skip to content

Commit

Permalink
Merge pull request #4 from wiryadev/main
Browse files Browse the repository at this point in the history
Update Theme.kt and add Icon
  • Loading branch information
Gurupreet committed Jun 28, 2021
2 parents 73000da + a366950 commit dbbe62e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2226,6 +2226,10 @@ object FaIcons {
// Solid icon : FistRaised
val FistRaised = SolidIcon(0xf6de)

// https://fontawesome.com/icons/500px?style=brands
// Brands icon : 500px
val FiveHundredPX = BrandIcon(0xf26e)

// https://fontawesome.com/icons/flag?style=solid
// Solid icon : Flag
val Flag = SolidIcon(0xf024)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ private val LightColorPalette = lightColors(
@Composable
fun FontAwesomeComposeTheme(
darkTheme: Boolean = isSystemInDarkTheme(),
content: @Composable() () -> Unit
content: @Composable () -> Unit
) {
val colors = if (darkTheme) {
DarkColorPalette
Expand Down

0 comments on commit dbbe62e

Please sign in to comment.