Open
Description
Sometime when i tried to click back button (eg: ListTemplate) and the Android Auto is loading and loading
"react-native": "0.71.18",
"react-native-carplay": "^2.4.1-beta.0",
Screen.Recording.2025-01-08.at.11.22.47.mov
and here is my template:
import { ListTemplate } from 'react-native-carplay';
const sections = Array.from({ length: 26 }).map((, i) => ({
header: Header ${String.fromCharCode(97 + i).toLocaleUpperCase()}
,
items: Array.from({ length: 3 }).map((, j) => ({
text: Item ${j + 1}
,
})),
sectionIndexTitle: String.fromCharCode(97 + i).toLocaleUpperCase(),
}));
export const releasePumpTemplate = new ListTemplate({
sections,
title: 'Release Pump',
headerAction: { type: 'back' },
});
Activity