Skip to content

Commit ec57669

Browse files
committed
release 0.4.9
1 parent a19e978 commit ec57669

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [0.4.9] - 20220808
2+
3+
* add bridge api
4+
* fix DApp browser request parsing with unknown address format
5+
16
## [0.4.8] - 20220621
27

38
* upgrade flutter 3.0.1

example/lib/pages/keyring.dart

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import 'dart:convert';
22

3+
import 'package:flutter/cupertino.dart';
34
import 'package:flutter/material.dart';
45
import 'package:polkawallet_sdk/api/apiKeyring.dart';
56
import 'package:polkawallet_sdk/api/types/addressIconData.dart';
@@ -330,19 +331,19 @@ class _KeyringPageState extends State<KeyringPage> {
330331
Row(
331332
mainAxisAlignment: MainAxisAlignment.spaceBetween,
332333
children: [
333-
RaisedButton(
334+
CupertinoButton(
334335
child: Text('Polkadot: 0'),
335336
color:
336337
_ss58 == 0 ? Theme.of(context).primaryColor : null,
337338
onPressed: () => _setSS58(0),
338339
),
339-
RaisedButton(
340+
CupertinoButton(
340341
child: Text('Kusama: 2'),
341342
color:
342343
_ss58 == 2 ? Theme.of(context).primaryColor : null,
343344
onPressed: () => _setSS58(2),
344345
),
345-
RaisedButton(
346+
CupertinoButton(
346347
child: Text('Substrate: 42'),
347348
color:
348349
_ss58 == 42 ? Theme.of(context).primaryColor : null,

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: polkawallet_sdk
22
description: Flutter SDK for building plugin package for polkawallet.
3-
version: 0.4.8
3+
version: 0.4.9
44
homepage: https://polkawallet.io
55

66
environment:

0 commit comments

Comments
 (0)