Files
App/components/CarPlay/Navigation.tsx
Violet Caulfield f377433677 CarPlay brain blast
2025-02-10 16:02:44 -06:00

15 lines
384 B
TypeScript

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