File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ## 2.1.8
2+
3+ - Removed cards from grid list
4+
15## 2.1.7
26
37- Removed image from QR Code, it was sometimes causing problems and needs more testing
Original file line number Diff line number Diff line change 11import 'package:flutter/material.dart' ;
22
33class WalletConnectModalConstants {
4- static const WALLETCONNECT_MODAL_VERSION = '2.1.7 ' ;
4+ static const WALLETCONNECT_MODAL_VERSION = '2.1.8 ' ;
55
66 static const Key helpPageKey = Key ('helpPageKey' );
77 static const Key qrCodePageKey = Key ('qrCodePageKey' );
Original file line number Diff line number Diff line change 11import 'package:flutter/material.dart' ;
2- import 'package:walletconnect_modal_flutter/models/walletconnect_modal_theme_data.dart' ;
3- import 'package:walletconnect_modal_flutter/widgets/walletconnect_modal_theme.dart' ;
42
53class GridListItem extends StatelessWidget {
64 const GridListItem ({
@@ -14,26 +12,28 @@ class GridListItem extends StatelessWidget {
1412
1513 @override
1614 Widget build (BuildContext context) {
17- final WalletConnectModalThemeData themeData =
18- WalletConnectModalTheme .getData (context);
15+ // final WalletConnectModalThemeData themeData =
16+ // WalletConnectModalTheme.getData(context);
1917
20- return Container (
21- decoration: BoxDecoration (
22- color: themeData.overlay010,
18+ return
19+ // Container(
20+ // decoration: BoxDecoration(
21+ // color: themeData.overlay010,
22+ // borderRadius: BorderRadius.circular(8),
23+ // ),
24+ // child:
25+ MaterialButton (
26+ padding: const EdgeInsets .all (8 ),
27+ onPressed: onSelect,
28+ shape: RoundedRectangleBorder (
2329 borderRadius: BorderRadius .circular (8 ),
2430 ),
25- child: MaterialButton (
26- padding: const EdgeInsets .all (8 ),
27- onPressed: onSelect,
28- shape: RoundedRectangleBorder (
29- borderRadius: BorderRadius .circular (8 ),
30- ),
31- elevation: 1 ,
32- focusElevation: 1 ,
33- hoverElevation: 1 ,
34- highlightElevation: 1 ,
35- child: child,
36- ),
31+ elevation: 1 ,
32+ focusElevation: 1 ,
33+ hoverElevation: 1 ,
34+ highlightElevation: 1 ,
35+ child: child,
36+ // ),
3737 );
3838 }
3939}
Original file line number Diff line number Diff line change 11name : walletconnect_modal_flutter
22description : The WalletConnectModal for WalletConnect built using Flutter.
3- version : 2.1.7
3+ version : 2.1.8
44repository : https://github.com/WalletConnect/WalletConnectModalFlutter
55
66environment :
You can’t perform that action at this time.
0 commit comments