From 9c8fe481f8bf11c6c47460bf650cc3ff548ab5df Mon Sep 17 00:00:00 2001 From: dankito Date: Wed, 9 Sep 2020 13:32:57 +0200 Subject: [PATCH] Fixed that Divider didn't set its color correctly --- ui/BankingiOSApp/BankingiOSApp/ui/views/Divider.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/BankingiOSApp/BankingiOSApp/ui/views/Divider.swift b/ui/BankingiOSApp/BankingiOSApp/ui/views/Divider.swift index acf3922c..d420e60e 100644 --- a/ui/BankingiOSApp/BankingiOSApp/ui/views/Divider.swift +++ b/ui/BankingiOSApp/BankingiOSApp/ui/views/Divider.swift @@ -10,8 +10,8 @@ struct Divider: View { var body: some View { Rectangle() + .fill(color) .frame(height: height) - .background(color) .listRowInsets(EdgeInsets()) .edgesIgnoringSafeArea(.horizontal) .padding(0)