Skip to content

Commit

Permalink
refactor: change files & remove expo file system
Browse files Browse the repository at this point in the history
  • Loading branch information
obeim committed Feb 21, 2024
1 parent a2a4595 commit ec75c95
Show file tree
Hide file tree
Showing 15 changed files with 5 additions and 11 deletions.
4 changes: 0 additions & 4 deletions assets/icons/Setting.svg

This file was deleted.

Binary file removed assets/icons/aya.svg
Binary file not shown.
Binary file removed assets/images/Moon.png
Binary file not shown.
Binary file removed assets/images/Sun.png
Binary file not shown.
1 change: 0 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
"expo-asset": "~8.10.1",
"expo-av": "~13.4.1",
"expo-constants": "~14.4.2",
"expo-file-system": "~15.4.5",
"expo-font": "~11.4.0",
"expo-linking": "~5.0.2",
"expo-localization": "~14.3.0",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion screens/azkar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Alert, Dimensions, ScrollView, Text, View } from "react-native";
import { Header } from "../jozz/Header";
import { useLocalSearchParams } from "expo-router";
import { useQuery } from "react-query";
import { getAzkarByCate } from "@/db/repos/AzkarRepo";
import { getAzkarByCate } from "@/repos/AzkarRepo";
import { ZekrCard } from "./components/ZekrCard";
import { useEffect, useState } from "react";
import CompletedModal from "./components/CompletedModal";
Expand Down
2 changes: 1 addition & 1 deletion screens/home/components/AzkarTab.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { FlatList, Pressable, Text, View } from "react-native";
import { useMemo } from "react";
import { useQuery } from "react-query";
import { getCategories } from "@/db/repos/CategoryRepo";
import { getCategories } from "@/repos/CategoryRepo";
import { router } from "expo-router";

export const AzkarTab = ({ search }: { search: string }) => {
Expand Down
2 changes: 1 addition & 1 deletion screens/home/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { MainCard } from "./components/MainCard";
import { TypeTabs } from "./components/TypeTabs";
import { useCallback, useEffect, useState } from "react";
import { useQuery } from "react-query";
import { getSuar } from "@/db/repos/SurahsRepo";
import { getSuar } from "@/repos/SurahsRepo";
import { SearchInput } from "./components/SearchInput";
import InnerSplash from "@/components/InnerSplash";
import { Header } from "./components/Header";
Expand Down
2 changes: 1 addition & 1 deletion screens/jozz/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { View } from "react-native";
import { useQuery } from "react-query";
import { useLocalSearchParams } from "expo-router";
import { Header } from "./Header";
import { getAyatAsJozz } from "@/db/repos/AyatRepo";
import { getAyatAsJozz } from "@/repos/AyatRepo";
import { useState } from "react";
import { storage } from "@/utils";
import { AyatView } from "./components/AyaView";
Expand Down
2 changes: 1 addition & 1 deletion screens/surah/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { useLocalSearchParams } from "expo-router";
import { Header } from "./Header";
import { View } from "react-native";
import { useQuery } from "react-query";
import { getSuraWithAyat } from "@/db/repos/SurahsRepo";
import { getSuraWithAyat } from "@/repos/SurahsRepo";
import { useState } from "react";
import { PageView } from "./components/PageView";
import { AyatView } from "./components/AyatView";
Expand Down

0 comments on commit ec75c95

Please sign in to comment.