I am using metropolis beamer theme.
Could anyone help me create numbered items with circles around (see pic), but without using enumitem package, and compatible with XeLatex or Lualatex?
I figured out how to do it with enumitem, unfortunately it breaks standard bullet points, and I read that enumitem should not be used with beamer.
Any help appreciated!
Working example (with the enumitem solution)
\documentclass{beamer}
\usetheme[progressbar=frametitle]{metropolis}
\usepackage{enumitem}
\newcommand*{\numberingI}[1]{%
\footnotesize\protect\tikz[baseline=-3px]%
\protect\node[fill=blue,shape=circle,inner sep=2pt](n1){#1};}
\begin{document}
\section{First Section}
\begin{frame}{}
\begin{enumerate}[label=\numberingI{\color{white}\arabic*}]
\item firstItem
\item seconItem
\item and so on
\end{enumerate}
\end{frame}

