This repository has been archived by the owner on Nov 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 712
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP: Monefy import + update app icons for import
- Loading branch information
Iliyan Germanov
committed
Dec 7, 2021
1 parent
cd9fffb
commit dc376e6
Showing
13 changed files
with
71 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
app/src/main/java/com/ivy/wallet/ui/csvimport/flow/instructions/MonefySteps.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
package com.ivy.wallet.ui.csvimport.flow.instructions | ||
|
||
import androidx.compose.foundation.layout.Spacer | ||
import androidx.compose.foundation.layout.height | ||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.Modifier | ||
import androidx.compose.ui.unit.dp | ||
|
||
@Composable | ||
fun MonefySteps( | ||
onUploadClick: () -> Unit | ||
) { | ||
Spacer(Modifier.height(12.dp)) | ||
|
||
//TODO: Implement | ||
|
||
StepTitle( | ||
number = 1, | ||
title = "Export CSV file" | ||
) | ||
|
||
Spacer(Modifier.height(12.dp)) | ||
|
||
VideoArticleRow( | ||
videoUrl = null, | ||
articleUrl = "https://help.spendee.com/article/137-export-transactions" | ||
) | ||
|
||
Spacer(Modifier.height(12.dp)) | ||
|
||
StepTitle( | ||
number = 2, | ||
title = "Check your email's \"Promotions\" and \"Spam\" folders" | ||
) | ||
|
||
Spacer(Modifier.height(24.dp)) | ||
|
||
StepTitle( | ||
number = 3, | ||
title = "Download the \"transactions_export...\" file attached to the email.", | ||
description = "If you have more than one currency you'll have to download each \"transactions_export...\" file and import it in Ivy." | ||
) | ||
|
||
Spacer(Modifier.height(24.dp)) | ||
|
||
UploadFileStep( | ||
stepNumber = 4, | ||
onUploadClick = onUploadClick | ||
) | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.