last changes
This commit is contained in:
parent
7a5ace403e
commit
899b50ded4
16 changed files with 53 additions and 89 deletions
|
|
@ -1,24 +1,39 @@
|
|||
import React from 'react';
|
||||
import { SafeAreaView } from 'react-native';
|
||||
|
||||
import { Graph } from '../../../components';
|
||||
import BudgetOverview from '../../../components/stats/BudgetOverview';
|
||||
import BudgetRemaining from '../../../components/stats/BudgetRemaining';
|
||||
import BudgetRemaining from '../../../components/stats/SavingsOverview';
|
||||
import SavingsOverview from '../../../components/stats/SavingsOverview';
|
||||
import Widget from '../../../components/stats/Widget';
|
||||
import FinancialAdvice from '../../../components/stats/FinancialAdvice';
|
||||
import BudgetTotal from '../../../components/stats/BudgetTotal';
|
||||
import { ScrollView } from 'react-native-gesture-handler';
|
||||
import { SafeAreaView } from 'react-native-safe-area-context';
|
||||
import DebugMenu from '../../../services/DebugMenu';
|
||||
|
||||
export default function Page() {
|
||||
|
||||
return (
|
||||
<SafeAreaView style={{flex: 1}}>
|
||||
<Widget title="Budget Overview"/>
|
||||
<Graph/>
|
||||
<BudgetRemaining/>
|
||||
<Widget>
|
||||
<BudgetOverview/>
|
||||
</Widget>
|
||||
<Widget>
|
||||
<SavingsOverview/>
|
||||
</Widget>
|
||||
<SafeAreaView style={{flex:1}}>
|
||||
<ScrollView>
|
||||
{/* <DebugMenu/> */}
|
||||
<Widget title="Budget Overview"/>
|
||||
<Graph/>
|
||||
<Widget>
|
||||
<BudgetOverview/>
|
||||
</Widget>
|
||||
<Widget>
|
||||
<SavingsOverview/>
|
||||
</Widget>
|
||||
<Widget>
|
||||
<BudgetTotal/>
|
||||
</Widget>
|
||||
{/* <Widget title='"Financial" Tips' backgroundColor='orange'>
|
||||
<FinancialAdvice/>
|
||||
</Widget> */}
|
||||
|
||||
|
||||
</ScrollView>
|
||||
</SafeAreaView>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue