|
@@ -38,30 +38,6 @@ class SupportSectionWidget extends StatelessWidget {
|
|
child: SettingsTextItem(text: "email", icon: Icons.navigate_next),
|
|
child: SettingsTextItem(text: "email", icon: Icons.navigate_next),
|
|
),
|
|
),
|
|
Divider(height: 4),
|
|
Divider(height: 4),
|
|
- GestureDetector(
|
|
|
|
- behavior: HitTestBehavior.translucent,
|
|
|
|
- onTap: () async {
|
|
|
|
- Navigator.of(context).push(
|
|
|
|
- MaterialPageRoute(
|
|
|
|
- builder: (BuildContext context) {
|
|
|
|
- return CrispChatPage();
|
|
|
|
- },
|
|
|
|
- ),
|
|
|
|
- );
|
|
|
|
- },
|
|
|
|
- child: SettingsTextItem(text: "chat", icon: Icons.navigate_next),
|
|
|
|
- ),
|
|
|
|
- Divider(height: 4),
|
|
|
|
- GestureDetector(
|
|
|
|
- behavior: HitTestBehavior.translucent,
|
|
|
|
- onTap: () async {
|
|
|
|
- await sendLogs(context, "bug@ente.io");
|
|
|
|
- showToast("thanks for reporting a bug!");
|
|
|
|
- },
|
|
|
|
- child: SettingsTextItem(
|
|
|
|
- text: "report bug 🐞", icon: Icons.navigate_next),
|
|
|
|
- ),
|
|
|
|
- Divider(height: 4),
|
|
|
|
GestureDetector(
|
|
GestureDetector(
|
|
behavior: HitTestBehavior.translucent,
|
|
behavior: HitTestBehavior.translucent,
|
|
onTap: () {
|
|
onTap: () {
|
|
@@ -89,6 +65,16 @@ class SupportSectionWidget extends StatelessWidget {
|
|
},
|
|
},
|
|
child: SettingsTextItem(text: "community", icon: Icons.navigate_next),
|
|
child: SettingsTextItem(text: "community", icon: Icons.navigate_next),
|
|
),
|
|
),
|
|
|
|
+ Divider(height: 4),
|
|
|
|
+ GestureDetector(
|
|
|
|
+ behavior: HitTestBehavior.translucent,
|
|
|
|
+ onTap: () async {
|
|
|
|
+ await sendLogs(context, "bug@ente.io");
|
|
|
|
+ showToast("thanks for reporting a bug!");
|
|
|
|
+ },
|
|
|
|
+ child: SettingsTextItem(
|
|
|
|
+ text: "report bug 🐞", icon: Icons.navigate_next),
|
|
|
|
+ ),
|
|
],
|
|
],
|
|
);
|
|
);
|
|
}
|
|
}
|