Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UI Redesign - Mobile - Trusted Senders #234

Closed
wants to merge 9 commits into from
Closed

UI Redesign - Mobile - Trusted Senders #234

wants to merge 9 commits into from

Conversation

Jainakin
Copy link

@Jainakin Jainakin commented Oct 6, 2022

- What I did
Created a new UI design for the trusted senders screen and a remove trusted sender dialog which closes #222

- How I did it
I created a new screen for the trusted senders screen inside the trusted_senders_screen folder

- How to verify it
Add this code to the welcome screen and you should be able to click the floating action button to view the new screen

floatingActionButton: FloatingActionButton(
    backgroundColor: const Color(0xFFF05E37),
    child: const ImageIcon(
        AssetImage("assets/images/add_icon.png"),
        color: Colors.white,
        size: 16.0,
    ),
    onPressed: () {
        showModalBottomSheet<dynamic>(
            isScrollControlled: true,
            shape: RoundedRectangleBorder(
                borderRadius: BorderRadius.circular(20.0),
            ),
            context: context,
            builder: (BuildContext context) {
                return TrustedSendersScreen();
            },
        );
    },
),

- Description for the changelog
Added Trusted Sender Screen and Dialog

Simulator Screen Shot - iPhone 11 Pro Max - 2022-10-06 at 22 23 37

Simulator Screen Shot - iPhone 11 Pro Max - 2022-10-06 at 22 24 10

@Jainakin Jainakin changed the title UI Redesign - Mobile - Trusted Senders #222 UI Redesign - Mobile - Trusted Senders Oct 6, 2022
@tinashe404
Copy link
Member

@Jainakin Please could you add the code into the PR so that when we run it we see your changes without any amendments. This screen should be visible when we click on Trusted Senders in the menu that appears on the right side of the screen.

@Jainakin
Copy link
Author

Jainakin commented Oct 7, 2022

@Jainakin Please could you add the code into the PR so that when we run it we see your changes without any amendments. This screen should be visible when we click on Trusted Senders in the menu that appears on the right side of the screen.

Ok, please give me some time.
Thank you

@Jainakin Jainakin closed this Oct 7, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants