I have a simple tabular in beamer with graphics in the first column. Whatever I do the vertical alignment in the first column fails. I also tried to implement the solutions for questions
Vertical misalignment due to beamer onslide?
Using beamer \visible command inside a table, without adding vertical space
to no avail. What should I do to ensure normal vertical alignment?
\documentclass{beamer}
\usepackage{tikz}
\begin{document}
\begin{frame}
\begin{tabular}{cc}
name & name \\
\raisebox{-0.8cm}{
\begin{tikzpicture}
\draw (0,0) rectangle (2,2);
\end{tikzpicture}} & text \\[0.85cm]
\uncover<2->{
\raisebox{-0.8cm}{
\begin{tikzpicture}
\draw (0,0) rectangle (2,2);
\end{tikzpicture}} & text \\[0.85cm]}
\uncover<3->{
\raisebox{-0.8cm}{
\begin{tikzpicture}
\draw (0,0) rectangle (2,2);
\end{tikzpicture}} & text}
\end{tabular}
\end{frame}
\end{document}