mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-17 12:09:41 +02:00
Full Matrix messaging client for iOS/Android with: - Matrix SDK integration with Zustand store and SecureStore credentials - Expo Router file-based navigation with auth guard - Room list, DMs, invites, and message timeline screens - Message input with replies, reactions, editing, and redaction - Image/file/voice message support with media upload - Room creation, settings, and member management - Global message search - Push notifications with badge count - Typing indicators and read receipts - NativeWind (Tailwind CSS) styling with dark theme Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
7 lines
207 B
JavaScript
7 lines
207 B
JavaScript
module.exports = function (api) {
|
|
api.cache(true);
|
|
return {
|
|
presets: [['babel-preset-expo', { jsxImportSource: 'nativewind' }], 'nativewind/babel'],
|
|
plugins: ['react-native-reanimated/plugin'],
|
|
};
|
|
};
|