File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed
Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 11import 'dart:convert' ;
22
3+ import 'package:flutter/cupertino.dart' ;
34import 'package:flutter/material.dart' ;
45import 'package:polkawallet_sdk/api/apiKeyring.dart' ;
56import '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 ,
Original file line number Diff line number Diff line change 11name : polkawallet_sdk
22description : Flutter SDK for building plugin package for polkawallet.
3- version : 0.4.8
3+ version : 0.4.9
44homepage : https://polkawallet.io
55
66environment :
You can’t perform that action at this time.
0 commit comments