Possible Duplicate:
How to Continue Enumerate Across Columns in Beamer
It seems to be a simple question but I can't find the way out and can't find the solution on Internet as well. I try to resume enumerate in the next slide in beamer but it does not work (I have tried to use enumitem but does not work as well). How can I fix it?
\documentclass{beamer}
\usepackage{enumerate}
\usetheme{default}
\setbeamertemplate{footline}[page number]
\begin{document}
\maketitle
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Example 1
\begin{frame}[fragile]
\frametitle{Example 1}
\begin{enumerate}
\item What is the apple?
\end{enumerate}
\end{frame}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Example 1
\begin{frame}[fragile]
\frametitle{Example 1}
\begin{enumerate}
\item What is the orange?
\vfill
\item What is the watermelon?
\vfill
\end{enumerate}
\end{frame}