Beamer - diagrams of boxed text
You are right, with tikz
is more simple to drawn your relations:
\documentclass[aspectratio=169]{beamer}
\usepackage{lmodern}
\usepackage{tikz}
\usetheme{Boadilla}
\usepackage[overlay]{textpos}
\usepackage{tikz}
\usetikzlibrary{arrows.meta, positioning, shadows}
\begin{document}
\begin{frame}
\frametitle{Title here}
\begin{center}
\begin{tikzpicture}[
node distance = 11mm and 44mm,
block/.style = {rectangle, rounded corners, fill=gray!30,
text width=0.24\linewidth, align=left,
drop shadow},
LA/.style = {-Straight Barb, semithick, % LA: left arrow
shorten >=3mm, shorten <=3mm},
LRA/.style = {Straight Barb-Straight Barb, semithick, % LRA: left right arrow
shorten >=3mm, shorten <=3mm}
]
\node (n1) [block] {Some text with math formulae e.g. $\alpha=f$};
\node (n2) [block,right=of n1] {Some text with math formulae e.g. $\alpha=f$};
\node (n3) [block,below=of n1] {Some text with math formulae e.g. $\alpha=f$};
\node (n4) [block,right=of n3] {Some text with math formulae e.g. $\alpha=f$};
%
\draw[LA] (n1) -- node[above] {long text here} (n2);
\draw[LRA] (n3) -- node[above] {long text here} (n4);
\end{tikzpicture}
\end{center}
\end{frame}
\end{document}
Why a tikz approach?
\documentclass[aspectratio=169]{beamer}
\usepackage{lmodern}
\usepackage{amsmath}
\usetheme{Boadilla}
\begin{document}
\begin{frame}{Title here}
\centering
\begin{minipage}{4cm}
\begin{block}{}
Some text with math formulae e.g. $\alpha=f$
\end{block}
\end{minipage}
$\underrightarrow{\makebox[3cm][r]{long text here}\hspace{3em}}$
\begin{minipage}{4cm}
\begin{block}{}
Some text with math formulae e.g. $\alpha=f$
\end{block}
\end{minipage}
\vfill
\begin{minipage}{4cm}
\begin{block}{}
Some text with math formulae e.g. $\alpha=f$
\end{block}
\end{minipage}
$\underleftrightarrow{\makebox[3cm][r]{long text here}\hspace{3em}}$
\begin{minipage}{4cm}
\begin{block}{}
Some text with math formulae e.g. $\alpha=f$
\end{block}
\end{minipage}
\end{frame}
\end{document}
Just for completeness in case you do not want to re-invent the beamer blocks with TikZ, and readjust them every time you change their appearance. You can just add the arrows as overlays.
\documentclass[aspectratio=169]{beamer}
\usepackage{lmodern}
\usepackage{tikz}
\usetikzlibrary{calc}
\tikzset{Connect/.style={ultra thick,>=latex,shorten >=0.5cm,shorten <=1cm}}
\newcommand{\tikznode}[2]{\tikz[remember picture,baseline=(#1.base),inner
sep=0pt]{\node(#1)[inner sep=0pt]{#2};}}
\usetheme{Boadilla}
\usepackage[overlay]{textpos}
\begin{document}
\begin{frame}{Title here}
\begin{overlayarea}{\textwidth}{8cm}
\begin{columns}[t]
\column{0.25\textwidth}
\centering
\begin{block}{}
\tikznode{1a}{\strut}Some text with math formulae e.g.\ $\alpha=f$\tikznode{1b}{\strut}
\end{block}
\vspace{1.7cm}
\begin{block}{}
\tikznode{2a}{\strut}
Some text with math formulae e.g.\ $\alpha=f$
\tikznode{2b}{\strut}
\end{block}
\column{0.30\textwidth}
\center
\vspace{1.7cm}
\column{0.25\textwidth}
\begin{block}{}
\tikznode{3a}{\strut}Some text with math formulae e.g.\ $\alpha=f$\tikznode{3b}{\strut}
\end{block}
\vspace{1.7cm}
\begin{block}{}
\tikznode{4a}{\strut}Some text with math formulae e.g.\ $\alpha=f$\tikznode{4b}{\strut}
\end{block}
\end{columns}%
\begin{tikzpicture}[overlay,remember picture]
\draw[Connect,->] ($(1a-|1b)!0.5!(1b)$) -- ($(3a)!0.5!(3a|-3b)$)
node[pos=0.55,above]{some text here};
\draw[Connect,<->] ($(2a-|2b)!0.5!(2b)$) -- ($(4a)!0.5!(4a|-4b)$)
node[pos=0.55,above]{some other text here};
\end{tikzpicture}
\end{overlayarea}
\end{frame}
\end{document}
I also added an overlayarea just in case you want to work with pause. This prevents the slide from jumping.