aboutsummaryrefslogtreecommitdiff
path: root/foray/Scenes/ForayNewTableViewCell.swift (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-03-25ForayNewTableViewCell -> ForayTableViewCellNicholas Tay1-84/+0
2022-03-24Reorganise into folder groupsNicholas Tay1-0/+0
In preparation for presenters to come in largely, lots of files starting to go everywhere...
2022-03-21Fix scroll in details viewNicholas Tay1-2/+3
Didn't constrain details label to the bottom of the content container, so scroll view didn't pick up on it (test with large font on a smaller viewport phone).
2022-03-19Adjust offsets and fix details label linesNicholas Tay1-2/+2
2022-03-18Use margins for new cell container + better image insetNicholas Tay1-12/+13
Surely there still is a better way for the trailing constraints on the labels?
2022-03-18Add back in description label and image to custom cellNicholas Tay1-6/+49
I don't think this 100% is the correct way with SnapKit. Need to seek advice and improve the constraints. However, an improvement over before is that the accessibility font sizes actually do work as intended now! Now to add back in the segues somehow...
2022-03-18Split table view cell into separate fileNicholas Tay1-0/+39
Cell no longer uses prototypes as registered in the Storyboard. Instead is a custom class inheriting the UITableViewCell and is manually registered by the VC. This is a first step towards reimplementing the prototype cells. Only has one label at the moment.