├── src ├── assets │ ├── icon.png │ ├── favicon.png │ ├── splash.png │ ├── talypay.png │ ├── talykhata.png │ ├── adaptive-icon.png │ ├── carbon_qr-code.png │ ├── wallet │ │ ├── index.js │ │ ├── suplier.js │ │ ├── incomeIn.js │ │ ├── incomeOut.js │ │ ├── logo.js │ │ ├── sendmoney.js │ │ ├── cashout.js │ │ ├── flaxiload.js │ │ ├── colectionIcon.js │ │ ├── logoTaly.js │ │ └── addmoney.js │ └── carbon.svg ├── Components │ ├── header │ │ ├── index.js │ │ ├── HeaderTitle.js │ │ └── HeaderLogo.js │ ├── main │ │ ├── Help.jsx │ │ ├── Inbox.jsx │ │ └── Add_Customer.jsx │ ├── Talybook │ │ ├── CustomerDetails.jsx │ │ ├── AddCustomer.jsx │ │ ├── Details.jsx │ │ ├── SearchBar.jsx │ │ ├── CustomerHead.jsx │ │ └── IncomeSheet.jsx │ ├── sidebar │ │ ├── Refear.js │ │ ├── Settings.js │ │ ├── BuyMessage.js │ │ ├── DueReports.js │ │ ├── CashReports.js │ │ ├── BackupData.js │ │ ├── ExpenceReports.js │ │ ├── SellBuyReports.js │ │ ├── SendingReports.js │ │ └── InchargeHeadReports.js │ ├── Cashbox │ │ ├── CashboxHead.jsx │ │ ├── CashboxLists.jsx │ │ ├── CashboxstatusBar.jsx │ │ ├── CashboxItem.jsx │ │ └── CashboxSheet.jsx │ └── index.js ├── constants │ ├── images.js │ ├── index.js │ ├── color.js │ └── routes.js ├── screens │ ├── index.js │ └── home │ │ ├── Drawer.jsx │ │ ├── CashBox.jsx │ │ ├── Talybook.jsx │ │ └── Wallet.jsx └── navigator │ ├── DrawerNavigator.js │ ├── StackNavigator.js │ ├── TabNavigator.js │ └── CustomDrawer.jsx ├── babel.config.js ├── App.js ├── app.json └── package.json /src/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/Taly-Book/HEAD/src/assets/icon.png -------------------------------------------------------------------------------- /src/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/Taly-Book/HEAD/src/assets/favicon.png -------------------------------------------------------------------------------- /src/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/Taly-Book/HEAD/src/assets/splash.png -------------------------------------------------------------------------------- /src/assets/talypay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/Taly-Book/HEAD/src/assets/talypay.png -------------------------------------------------------------------------------- /src/assets/talykhata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/Taly-Book/HEAD/src/assets/talykhata.png -------------------------------------------------------------------------------- /src/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/Taly-Book/HEAD/src/assets/adaptive-icon.png -------------------------------------------------------------------------------- /src/assets/carbon_qr-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/Taly-Book/HEAD/src/assets/carbon_qr-code.png -------------------------------------------------------------------------------- /src/Components/header/index.js: -------------------------------------------------------------------------------- 1 | export {default as HeaderTitle} from './HeaderTitle'; 2 | export {default as HeaderLogo} from './HeaderLogo'; 3 | -------------------------------------------------------------------------------- /src/constants/images.js: -------------------------------------------------------------------------------- 1 | export default { 2 | bgPattern: require('../assets/drawer-cover.jpeg'), 3 | user: require('../assets/user.jpg'), 4 | }; -------------------------------------------------------------------------------- /src/constants/index.js: -------------------------------------------------------------------------------- 1 | import ROUTES from './routes'; 2 | import IMGS from './imgs'; 3 | import COLORS from './colors'; 4 | 5 | export {ROUTES, IMGS, COLORS}; -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = function(api) { 2 | api.cache(true); 3 | return { 4 | presets: ['babel-preset-expo'], 5 | plugins: ['react-native-reanimated/plugin'], 6 | }; 7 | }; 8 | -------------------------------------------------------------------------------- /src/screens/index.js: -------------------------------------------------------------------------------- 1 | export {default as Drawer} from './home/Drawer'; 2 | export {default as CashBox} from './home/CashBox'; 3 | export {default as Talybook} from './home/Talybook'; 4 | export {default as Wallet} from './home/Wallet'; 5 | -------------------------------------------------------------------------------- /src/Components/main/Help.jsx: -------------------------------------------------------------------------------- 1 | import { View, Text } from 'react-native' 2 | import React from 'react' 3 | 4 | export default function Help() { 5 | return ( 6 | 7 | Help 8 | 9 | ) 10 | } -------------------------------------------------------------------------------- /src/constants/color.js: -------------------------------------------------------------------------------- 1 | export default { 2 | gradientForm: '#A376F1', 3 | primary: '#7d5fff', 4 | white: '#FFFFFF', 5 | dark: '#444', 6 | bgColor: '#82ccdd', 7 | warning: '#f0d500', 8 | danger: '#FF0D0E', 9 | gray: '#666666', 10 | grayLight: '#ccc', 11 | black: '#0a0a0a', 12 | }; -------------------------------------------------------------------------------- /src/Components/main/Inbox.jsx: -------------------------------------------------------------------------------- 1 | import { View, Text } from 'react-native' 2 | import React from 'react' 3 | 4 | export default function Inbox() { 5 | return ( 6 | 7 | Inbox 8 | 9 | ) 10 | } -------------------------------------------------------------------------------- /src/Components/Talybook/CustomerDetails.jsx: -------------------------------------------------------------------------------- 1 | import { View, Text, ScrollView } from "react-native"; 2 | import React from "react"; 3 | import Details from "./Details"; 4 | 5 | export default function CustomerDetails() { 6 | return ( 7 | 8 |
9 | 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /src/Components/sidebar/Refear.js: -------------------------------------------------------------------------------- 1 | import { View, Text } from 'react-native' 2 | import React from 'react' 3 | 4 | export default function Refear() { 5 | return ( 6 | 7 | Refear 8 | 9 | ) 10 | } -------------------------------------------------------------------------------- /src/Components/sidebar/Settings.js: -------------------------------------------------------------------------------- 1 | import { View, Text } from 'react-native' 2 | import React from 'react' 3 | 4 | export default function Settings() { 5 | return ( 6 | 7 | Settings 8 | 9 | ) 10 | } -------------------------------------------------------------------------------- /src/Components/sidebar/BuyMessage.js: -------------------------------------------------------------------------------- 1 | import { View, Text } from 'react-native' 2 | import React from 'react' 3 | 4 | export default function BuyMessage() { 5 | return ( 6 | 7 | BuyMessage 8 | 9 | ) 10 | } -------------------------------------------------------------------------------- /src/Components/sidebar/DueReports.js: -------------------------------------------------------------------------------- 1 | import { View, Text } from 'react-native' 2 | import React from 'react' 3 | 4 | export default function DueReports() { 5 | return ( 6 | 7 | Due_Reports 8 | 9 | ) 10 | } -------------------------------------------------------------------------------- /src/Components/main/Add_Customer.jsx: -------------------------------------------------------------------------------- 1 | import { View, Text } from 'react-native' 2 | import React from 'react' 3 | 4 | export default function Add_Customer() { 5 | return ( 6 | 7 | Add_Customer 8 | 9 | ) 10 | } -------------------------------------------------------------------------------- /src/Components/sidebar/CashReports.js: -------------------------------------------------------------------------------- 1 | import { View, Text } from 'react-native' 2 | import React from 'react' 3 | 4 | export default function CashReports() { 5 | return ( 6 | 7 | CashReports 8 | 9 | ) 10 | } -------------------------------------------------------------------------------- /src/screens/home/Drawer.jsx: -------------------------------------------------------------------------------- 1 | import { View, Text } from "react-native"; 2 | import React from "react"; 3 | import { Button } from "react-native"; 4 | import { DrawerActions } from "@react-navigation/native"; 5 | 6 | export default function Drawer() { 7 | return ( 8 |