Skip to content

Commit

Permalink
release 0.4.9
Browse files Browse the repository at this point in the history
  • Loading branch information
RomeroYang committed Aug 8, 2022
1 parent a19e978 commit ec57669
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [0.4.9] - 20220808

* add bridge api
* fix DApp browser request parsing with unknown address format

## [0.4.8] - 20220621

* upgrade flutter 3.0.1
Expand Down
7 changes: 4 additions & 3 deletions example/lib/pages/keyring.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import 'dart:convert';

import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:polkawallet_sdk/api/apiKeyring.dart';
import 'package:polkawallet_sdk/api/types/addressIconData.dart';
Expand Down Expand Up @@ -330,19 +331,19 @@ class _KeyringPageState extends State<KeyringPage> {
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
RaisedButton(
CupertinoButton(
child: Text('Polkadot: 0'),
color:
_ss58 == 0 ? Theme.of(context).primaryColor : null,
onPressed: () => _setSS58(0),
),
RaisedButton(
CupertinoButton(
child: Text('Kusama: 2'),
color:
_ss58 == 2 ? Theme.of(context).primaryColor : null,
onPressed: () => _setSS58(2),
),
RaisedButton(
CupertinoButton(
child: Text('Substrate: 42'),
color:
_ss58 == 42 ? Theme.of(context).primaryColor : null,
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: polkawallet_sdk
description: Flutter SDK for building plugin package for polkawallet.
version: 0.4.8
version: 0.4.9
homepage: https://polkawallet.io

environment:
Expand Down

0 comments on commit ec57669

Please sign in to comment.