update empty view screens

This commit is contained in:
Trey t
2022-03-24 11:17:37 -05:00
parent cadfac93e3
commit c1143d42ed
4 changed files with 12 additions and 16 deletions

View File

@@ -48,8 +48,11 @@ struct MonthView: View {
if viewModel.hasNoData {
VStack {
Spacer()
EmptyHomeView(viewModel: viewModel)
Text(String(localized: "month_view_no_data"))
.font(.title)
.padding()
.fixedSize(horizontal: false, vertical: true)
.foregroundColor(textColor)
Spacer()
}
} else {