Skip to content

Commit 3f3b70c

Browse files
authored
Share action on BoxShadow
Added a print statement for BoxShadow onTap method
1 parent b106d82 commit 3f3b70c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

best_flutter_ui_templates/lib/invite_friend_screen.dart

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,10 @@ class _InviteFriendState extends State<InviteFriend> {
7070
child: Material(
7171
color: Colors.transparent,
7272
child: InkWell(
73-
onTap: () {},
73+
onTap: () {
74+
//method here for functionality
75+
print('Share Action.');
76+
},
7477
child: Center(
7578
child: Row(
7679
mainAxisAlignment: MainAxisAlignment.center,

0 commit comments

Comments
 (0)