feat: remove firebase. (#405)

* feat: remove firebase.

* build: remove firebase config.
This commit is contained in:
Aunali321
2022-10-17 20:24:47 +05:30
committed by GitHub
parent 5fd1154039
commit 2e050d06e8
9 changed files with 0 additions and 123 deletions

View File

@ -206,24 +206,6 @@ class SettingsView extends StatelessWidget {
value: model.isSentryEnabled(),
onTap: (value) => model.useSentry(value),
),
const SizedBox(height: 20.0),
CustomSwitchTile(
padding: const EdgeInsets.symmetric(horizontal: 20.0),
title: I18nText(
'settingsView.firebaseCrashlyticsLabel',
child: const Text(
'',
style: TextStyle(
fontSize: 20,
fontWeight: FontWeight.w500,
),
),
),
subtitle:
I18nText('settingsView.firebaseCrashlyticsHint'),
value: model.isCrashlyticsEnabled(),
onTap: (value) => model.useCrashlytics(value),
),
],
),
_settingsDivider,