u/Aromatic-Row3017

Movie set among the Amish *NOT* Witness

I think it was a made for TV movie where a female police detective or sheriff needs to stay with an Amish family while some crime is investigated and slowly she begins to understand their lifestyle. I originally thought the lead was played by Kate Mulgrew; but I didn’t see anything in her filmography that seemed to match. I remember there was a subplot about one of the local families who were being shunned because they built their barn with a different kind of roof (one that provided more storage space); and the cop eventually understands that the issue isn’t the barn but their pride in doing things differently.

reddit.com
u/Aromatic-Row3017 — 5 days ago

Experienced engineer in early stages of learning Swift/SwiftUI

I have a situation where I have 2 columns of views. One is an VStack of several views, the second column is essentially a Text and a ScrollView+LazyVStack.

So roughly this

HStack {
VStack {
View
View
View
View
}
VStack {
Text
ScrollView {
LazyVStack {
ForEach {
LineView
}
}
}
}
}

It looks OK in preview; but when I run it as an app, it tries to make the ScrollView tall enough to fit the entire array and generates all sorts of problems. I can “fix” it by hardcoding the frame size of the ScrollView; but that’s obviously the wrong answer.

How to I force the 2nd VStack to match the height of the first?

reddit.com
u/Aromatic-Row3017 — 9 days ago