mirror of
https://github.com/ARMSX2/ARMSX2.git
synced 2026-08-24 16:50:16 -07:00
- Updated React Native version from 0.74 to 0.79 in AboutScreen. - Refactored GameSelector to use React Native Paper components, including Appbar, Card, and FAB. - Improved layout handling in GameSelector with grid and list views. - Added search functionality in GameSelector with a Searchbar. - Introduced BottomSheetModal for adding cover URLs in GameSelector. - Enhanced SettingsScreen with Paper components and improved layout. - Consolidated settings into SectionCard components for better organization. - Updated theme management to use react-native-paper's theming capabilities. - Cleaned up settings.gradle to simplify the inclusion of the React Native gradle plugin.
12 lines
230 B
JavaScript
12 lines
230 B
JavaScript
import React from 'react';
|
|
import Router from './app_ui/Router.jsx';
|
|
import { ThemeProvider } from './app_ui/theme.jsx';
|
|
|
|
export default function App() {
|
|
return (
|
|
<ThemeProvider>
|
|
<Router />
|
|
</ThemeProvider>
|
|
);
|
|
}
|