Skip to content

Commit

Permalink
chore: add Goal TopAppBar color
Browse files Browse the repository at this point in the history
  • Loading branch information
murjune committed Jan 30, 2025
1 parent d5af193 commit 2f2a964
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import androidx.compose.material3.Icon
import androidx.compose.material3.IconButton
import androidx.compose.material3.Text
import androidx.compose.material3.TextButton
import androidx.compose.material3.TopAppBarDefaults
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
Expand Down Expand Up @@ -53,6 +54,9 @@ internal fun AddGoalTopAppBar(
)
}
},
colors = TopAppBarDefaults.topAppBarColors(
containerColor = DobeDobeTheme.colors.white,
),
)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import androidx.compose.material3.Icon
import androidx.compose.material3.IconButton
import androidx.compose.material3.Text
import androidx.compose.material3.TextButton
import androidx.compose.material3.TopAppBarDefaults
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
Expand Down Expand Up @@ -52,6 +53,9 @@ internal fun DetailGoalTopAppBar(
)
}
},
colors = TopAppBarDefaults.topAppBarColors(
containerColor = DobeDobeTheme.colors.white,
),
)
}

Expand Down

0 comments on commit 2f2a964

Please sign in to comment.