|
1 |
| -import React, {useEffect, useState} from 'react'; |
| 1 | +import React from 'react'; |
2 | 2 | import {createBottomTabNavigator} from '@react-navigation/bottom-tabs';
|
3 |
| -import {getVersion, getBuildNumber} from 'react-native-device-info'; |
| 3 | +import {getVersion} from 'react-native-device-info'; |
4 | 4 |
|
5 | 5 | import Feather from 'react-native-vector-icons/Feather';
|
6 | 6 | import FontAwesome6 from 'react-native-vector-icons/FontAwesome6';
|
7 | 7 | import MaterialIcons from 'react-native-vector-icons/MaterialIcons';
|
8 | 8 |
|
9 |
| -import {Settings, Sources} from '../Screens'; |
| 9 | +import {Settings} from '../Screens'; |
10 | 10 | import {NAVIGATION} from '../Constants';
|
11 | 11 | import {useSelector} from 'react-redux';
|
12 | 12 | import {ComicBookmarks, Home, OfflineComic} from '../Screens/Comic';
|
13 | 13 | import {View, StyleSheet} from 'react-native';
|
14 |
| -import DownTime from '../Components/UIComp/DownTime'; |
15 | 14 | import {useFeatureFlag} from 'configcat-react';
|
16 | 15 | import LinkListScreen from '../InkNest-Externals/Screens/Webview/LinkListScreen';
|
| 16 | +import FloatingDonationButton from '../InkNest-Externals/Donation/FloatingDonationButton'; |
17 | 17 |
|
18 | 18 | const BottomTab = createBottomTabNavigator();
|
19 | 19 |
|
@@ -81,6 +81,7 @@ export function BottomNavigation() {
|
81 | 81 | const {value: forIosValue} = useFeatureFlag('forIos', 'Default');
|
82 | 82 |
|
83 | 83 | return (
|
| 84 | + <> |
84 | 85 | <BottomTab.Navigator
|
85 | 86 | screenOptions={{
|
86 | 87 | tabBarBackground: () => (
|
@@ -174,5 +175,7 @@ export function BottomNavigation() {
|
174 | 175 | />
|
175 | 176 | )}
|
176 | 177 | </BottomTab.Navigator>
|
| 178 | + <FloatingDonationButton /> |
| 179 | + </> |
177 | 180 | );
|
178 | 181 | }
|
0 commit comments