mobile: consistent dark theme as desktop

This commit is contained in:
talksik
2026-04-30 17:46:09 -07:00
parent 424f27737b
commit 13d3df2b51
8 changed files with 74 additions and 45 deletions
File diff suppressed because one or more lines are too long
@@ -0,0 +1,10 @@
import { View } from "react-native";
/**
* Inset hairline separator for edge-to-edge list rows. Pass to a FlatList
* via `ItemSeparatorComponent` so it renders only between rows, not after
* the last one. Mirrors desktop's <Separator className="mx-4" /> pattern.
*/
export function ListSeparator() {
return <View className="bg-border mx-4 h-px" />;
}