├── .gitignore ├── API └── fileManager │ ├── copyFile.ts │ ├── createFile.ts │ ├── createFolder.ts │ ├── deleteFile.ts │ ├── deleteFolder.ts │ ├── fileLocations.ts │ ├── index.ts │ ├── info.ts │ ├── moveFile.ts │ └── renameFile.ts ├── README.md ├── app.json ├── app ├── (tabs) │ ├── _layout.tsx │ ├── dashboard.tsx │ ├── index.tsx │ └── three.tsx ├── [...missing].tsx ├── _layout.tsx └── modal.tsx ├── assets ├── fonts │ ├── Agdasima-Bold.ttf │ └── SpaceMono-Regular.ttf └── images │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ └── splash.png ├── babel.config.js ├── components ├── EditScreenInfo.tsx ├── ExternalLink.tsx ├── FileView │ ├── ContextMenu │ │ ├── MenuOption.tsx │ │ └── index.tsx │ ├── Item.tsx │ └── index.tsx ├── StyledText.tsx ├── Themed.tsx ├── __tests__ │ └── StyledText-test.js └── dashboard │ ├── (file management) │ ├── FileStatistics.tsx │ └── StorageRecommendations.tsx │ └── (file metrics) │ ├── QuickActions.tsx │ ├── RecentActvity.tsx │ ├── StorageSpaceOverview.tsx │ ├── StorageUsageByFileType.tsx │ └── SyncStatus.tsx ├── constants └── Colors.ts ├── index.ts ├── package.json ├── tsconfig.json └── utils ├── sort-content.ts └── tmp-generate-content.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/.gitignore -------------------------------------------------------------------------------- /API/fileManager/copyFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/API/fileManager/copyFile.ts -------------------------------------------------------------------------------- /API/fileManager/createFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/API/fileManager/createFile.ts -------------------------------------------------------------------------------- /API/fileManager/createFolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/API/fileManager/createFolder.ts -------------------------------------------------------------------------------- /API/fileManager/deleteFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/API/fileManager/deleteFile.ts -------------------------------------------------------------------------------- /API/fileManager/deleteFolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/API/fileManager/deleteFolder.ts -------------------------------------------------------------------------------- /API/fileManager/fileLocations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/API/fileManager/fileLocations.ts -------------------------------------------------------------------------------- /API/fileManager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/API/fileManager/index.ts -------------------------------------------------------------------------------- /API/fileManager/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/API/fileManager/info.ts -------------------------------------------------------------------------------- /API/fileManager/moveFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/API/fileManager/moveFile.ts -------------------------------------------------------------------------------- /API/fileManager/renameFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/API/fileManager/renameFile.ts -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/app.json -------------------------------------------------------------------------------- /app/(tabs)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/app/(tabs)/_layout.tsx -------------------------------------------------------------------------------- /app/(tabs)/dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/app/(tabs)/dashboard.tsx -------------------------------------------------------------------------------- /app/(tabs)/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/app/(tabs)/index.tsx -------------------------------------------------------------------------------- /app/(tabs)/three.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/app/(tabs)/three.tsx -------------------------------------------------------------------------------- /app/[...missing].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/app/[...missing].tsx -------------------------------------------------------------------------------- /app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/app/_layout.tsx -------------------------------------------------------------------------------- /app/modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/app/modal.tsx -------------------------------------------------------------------------------- /assets/fonts/Agdasima-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/assets/fonts/Agdasima-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /assets/images/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/assets/images/adaptive-icon.png -------------------------------------------------------------------------------- /assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/assets/images/favicon.png -------------------------------------------------------------------------------- /assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/assets/images/icon.png -------------------------------------------------------------------------------- /assets/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/assets/images/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/EditScreenInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/components/EditScreenInfo.tsx -------------------------------------------------------------------------------- /components/ExternalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/components/ExternalLink.tsx -------------------------------------------------------------------------------- /components/FileView/ContextMenu/MenuOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/components/FileView/ContextMenu/MenuOption.tsx -------------------------------------------------------------------------------- /components/FileView/ContextMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/components/FileView/ContextMenu/index.tsx -------------------------------------------------------------------------------- /components/FileView/Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/components/FileView/Item.tsx -------------------------------------------------------------------------------- /components/FileView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/components/FileView/index.tsx -------------------------------------------------------------------------------- /components/StyledText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/components/StyledText.tsx -------------------------------------------------------------------------------- /components/Themed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/components/Themed.tsx -------------------------------------------------------------------------------- /components/__tests__/StyledText-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/components/__tests__/StyledText-test.js -------------------------------------------------------------------------------- /components/dashboard/(file management)/FileStatistics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/components/dashboard/(file management)/FileStatistics.tsx -------------------------------------------------------------------------------- /components/dashboard/(file management)/StorageRecommendations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/components/dashboard/(file management)/StorageRecommendations.tsx -------------------------------------------------------------------------------- /components/dashboard/(file metrics)/QuickActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/components/dashboard/(file metrics)/QuickActions.tsx -------------------------------------------------------------------------------- /components/dashboard/(file metrics)/RecentActvity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/components/dashboard/(file metrics)/RecentActvity.tsx -------------------------------------------------------------------------------- /components/dashboard/(file metrics)/StorageSpaceOverview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/components/dashboard/(file metrics)/StorageSpaceOverview.tsx -------------------------------------------------------------------------------- /components/dashboard/(file metrics)/StorageUsageByFileType.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/components/dashboard/(file metrics)/StorageUsageByFileType.tsx -------------------------------------------------------------------------------- /components/dashboard/(file metrics)/SyncStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/components/dashboard/(file metrics)/SyncStatus.tsx -------------------------------------------------------------------------------- /constants/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/constants/Colors.ts -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- 1 | import 'expo-router/entry'; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/sort-content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/utils/sort-content.ts -------------------------------------------------------------------------------- /utils/tmp-generate-content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/borhara/Maestro/HEAD/utils/tmp-generate-content.ts --------------------------------------------------------------------------------