Skip to content

Commit f7a5850

Browse files
author
Sterling Long
committed
2.1.8
1 parent d59caeb commit f7a5850

4 files changed

Lines changed: 25 additions & 21 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
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

lib/constants/constants.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import 'package:flutter/material.dart';
22

33
class 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');
Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
import '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

53
class 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
}

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: walletconnect_modal_flutter
22
description: The WalletConnectModal for WalletConnect built using Flutter.
3-
version: 2.1.7
3+
version: 2.1.8
44
repository: https://github.com/WalletConnect/WalletConnectModalFlutter
55

66
environment:

0 commit comments

Comments
 (0)