Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 66 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
name: Bug Report

description: Create a bug report

title: "Brief Description of the Issue"

labels:
- bug

body:
- type: markdown
attributes:
value: |
#### Please fill the fields to help us solving your bug! Don't forget to add the right label.
- type: checkboxes
attributes:
label: Is there an existing issue for this?
description: Please search to see if an issue already exists for the bug you encountered.
options:
- label: I have searched the existing issues
required: true

- type: textarea
id: what-happened
attributes:
label: What happened?
description: Also tell us, what did you expect to happen?
placeholder: Describe your bug!
validations:
required: true

- type: textarea
attributes:
label: Steps To Reproduce
description: Steps to reproduce the behavior.
placeholder: |
1. In this environment...
2. With this config...
3. Run '...'
4. See error...
validations:
required: false

- type: textarea
id: screenshots
attributes:
label: Relevant screenshots/screen records
description: |
Please provide any relevant screenshots/screen records, this is very important for UI issues.
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
validations:
required: true

- type: textarea
id: logs
attributes:
label: Relevant log output
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
render: console
validations:
required: true

- type: markdown
attributes:
value: |
### Thanks for taking the time to fill out this bug report!
28 changes: 28 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Feature request
description: Suggest an idea for this project
labels: ["type_feature"]
body:
- type: markdown
attributes:
value: |
Don't forget to add the right label

- type: textarea
id: describe
attributes:
label: Is your feature request related to a problem? Please describe
placeholder: A clear and concise description of what the problem is. Ex. I'm always frustrated when \[...]
validations:
required: true

- type: textarea
id: solution
attributes:
label: Describe the solution you'd like
placeholder: A clear and concise description of what you want to happen. If you've a specific approach to discuss, describe it here clearly.
validations:
required: true
- type: markdown
attributes:
value: |
### Thanks for taking the time to fill out this bug report!
11 changes: 11 additions & 0 deletions .github/PULL_REQUEST.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
### Changes

List of changes this PR includes

### Related Issues

List of related issues

### Tested Scenarios

A list of scenarios tried to match the deliverables
3 changes: 2 additions & 1 deletion app/lib/screens/wallets/send.dart
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,8 @@ class _WalletSendScreenState extends State<WalletSendScreen> {
style: Theme.of(context).textTheme.bodyMedium!.copyWith(
color: Theme.of(context).colorScheme.onSurface,
),
keyboardType: const TextInputType.numberWithOptions(decimal: true),
keyboardType:
const TextInputType.numberWithOptions(decimal: true),
controller: amountController,
decoration: InputDecoration(
labelText: 'Amount (Balance: $balance)',
Expand Down
6 changes: 4 additions & 2 deletions app/lib/widgets/wizard/common_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ class _CommonPageState extends State<CommonPage> {
bool attemptToContinue = false;
final termsAndConditionsUrl = Globals().termsAndConditionsUrl;


@override
Widget build(BuildContext context) {
return Scaffold(
Expand Down Expand Up @@ -184,7 +183,10 @@ class _CommonPageState extends State<CommonPage> {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => WebView(title: 'Terms and Conditions', url: termsAndConditionsUrl,)),
builder: (context) => WebView(
title: 'Terms and Conditions',
url: termsAndConditionsUrl,
)),
);
},
),
Expand Down
6 changes: 5 additions & 1 deletion app/lib/widgets/wizard/terms_and_conditions.dart
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ class _TermsAndConditionsState extends State<TermsAndConditions> {
onTap: () {
Navigator.push(
context,
MaterialPageRoute(builder: (context) => WebView(url: termsAndConditionsUrl, title: 'Terms and Conditions', )),
MaterialPageRoute(
builder: (context) => WebView(
url: termsAndConditionsUrl,
title: 'Terms and Conditions',
)),
);
},
child: Text('Terms & Conditions',
Expand Down