From 4d212d9c0526f1bcabc43081382dc599618f1640 Mon Sep 17 00:00:00 2001 From: Kruthika KP <> Date: Thu, 30 Apr 2020 18:47:30 +0530 Subject: [PATCH] change in alignment --- .../List/TwoColumn/ListTwoColumnDropdownSelectors.swift | 4 ++-- .../List/TwoColumn/ListTwoColumnDropdownSelectorsModel.swift | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/TwoColumn/ListTwoColumnDropdownSelectors.swift b/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/TwoColumn/ListTwoColumnDropdownSelectors.swift index b31d85a2..1e3f2fe3 100644 --- a/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/TwoColumn/ListTwoColumnDropdownSelectors.swift +++ b/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/TwoColumn/ListTwoColumnDropdownSelectors.swift @@ -23,8 +23,8 @@ import Foundation //------------------------------------------------------- public override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) { - stack = Stack.createStack(with: [(view: leftDropDown, model: StackItemModel(percent: 50, horizontalAlignment: .leading)), - (view: rightDropDown, model: StackItemModel(percent: 50, horizontalAlignment: .trailing))], + stack = Stack.createStack(with: [(view: leftDropDown, model: StackItemModel(percent: 50, horizontalAlignment: .fill)), + (view: rightDropDown, model: StackItemModel(percent: 50, horizontalAlignment: .fill))], axis: .horizontal,spacing: 10) super.init(style: style, reuseIdentifier: reuseIdentifier) } diff --git a/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/TwoColumn/ListTwoColumnDropdownSelectorsModel.swift b/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/TwoColumn/ListTwoColumnDropdownSelectorsModel.swift index 9a8a99ad..466d75f1 100644 --- a/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/TwoColumn/ListTwoColumnDropdownSelectorsModel.swift +++ b/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/TwoColumn/ListTwoColumnDropdownSelectorsModel.swift @@ -57,5 +57,4 @@ public class ListTwoColumnDropdownSelectorsModel: ListItemModel, MoleculeModelPr try container.encode(leftDropDown, forKey: .leftDropDown) try container.encode(rightDropDown, forKey: .rightDropDown) } - }