mirror of
https://github.com/Jellify-Music/App.git
synced 2026-02-13 22:18:32 -06:00
15 lines
384 B
TypeScript
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; |