I have a longtable where every row can have a slightly different height and is followed by a \hline. How can I get the rows of the pages to be \flushbottomend?
Here's a MWE:
\documentclass[a5paper]{article}
\usepackage{longtable}
\usepackage[showframe]{geometry}
\usepackage{lipsum}
\setlength{\parindent}{0pt}
\flushbottom
\begin{document}
\lipsum[1-4]\newpage
\begin{longtable}{@{}p{\linewidth}@{}}
\lipsum[1]\tabularnewline\hline
\lipsum[1]\tabularnewline\hline
\lipsum[1]\tabularnewline\hline
\lipsum[1]\tabularnewline\hline
\lipsum[1]\tabularnewline\hline
\end{longtable}
\end{document}
A pdf is here. Ideally every row should stretch, but I'd be satisfied if only the last one was stretched.

