Skip to content

Commit

Permalink
Merge pull request #77 from NiftyTreeStudios/hot-fix/cafe-name-text-a…
Browse files Browse the repository at this point in the history
…lignment

Fix cafe name text alignment
  • Loading branch information
Iikeli authored Dec 6, 2021
2 parents 7b7ed1d + acd82d2 commit db59e09
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Bean Juice/Views/Screens/CafeDetailsView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ struct CafeDetailsView: View {
.scaledToFill()
VStack {
// Basic info
Text(cafe.name).font(.title)
Text(cafe.name)
.font(.title)
.multilineTextAlignment(.center)

HStack(spacing: 25) {
Button {
Expand Down

0 comments on commit db59e09

Please # to comment.