'R beamer numbering in default theme

I am looking for a solution on how to force slides numbering in R's beamer_presentation with theme set at "default".

So far, I have found a solution but under them "metropolis". If I just type "default" instead of "metropolis", there is an error.

---
title: "**TITLE**"
subtitle: "Subtitle"
author: "Name"
institute: ""
date: January 25, 2022
output:
  beamer_presentation:
  theme: "default"
  keep_md: true
  keep_tex: no
  latex_engine: xelatex
  includes:
     in_header:
  incremental: no
classoption: aspectratio=169
header-includes:
    - \usetheme[numbering=fraction]{metropolis}
    - \def\ps@navigation@titlepage{\setbeamertemplate{footline}{}\@nameuse{ps@navigation}}
---


Solution 1:[1]

Beamer actually has a very handy macro to add frame numbers: \setbeamertemplate{footline}[frame numbers] to the footline

---
title: "**TITLE**"
subtitle: "Subtitle"
author: "Name"
institute: ""
date: January 25, 2022
output:
  beamer_presentation:
    keep_tex: true
header-includes:
  - \setbeamertemplate{footline}[frame number]
---

ttt

enter image description here

(needs rmarkdown v2.11.15 or newer)

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1