Files
App/components/CarPlay/Navigation.tsx
T
Violet Caulfield ddff1956f5 idk
2025-01-25 17:44:48 -06:00

12 lines
325 B
TypeScript

import { CarPlay, TabBarTemplate } from "react-native-carplay";
const CarPlayNavigation : TabBarTemplate = new TabBarTemplate({
title: 'Navigation',
templates: [],
onTemplateSelect(template, e) {
if (template)
CarPlay.pushTemplate(template, true)
},
});
export default CarPlayNavigation;