|
|
|
|
@ -13,7 +13,6 @@ import 'package:fluffychat/pangea/network/requests.dart';
|
|
|
|
|
import 'package:fluffychat/pangea/network/urls.dart';
|
|
|
|
|
import 'package:fluffychat/pangea/utils/error_handler.dart';
|
|
|
|
|
import 'package:fluffychat/pangea/utils/firebase_analytics.dart';
|
|
|
|
|
import 'package:fluffychat/pangea/widgets/subscription/subscription_paywall.dart';
|
|
|
|
|
import 'package:fluffychat/utils/platform_infos.dart';
|
|
|
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
@ -155,9 +154,10 @@ class SubscriptionController extends BaseController {
|
|
|
|
|
constraints: BoxConstraints(
|
|
|
|
|
maxHeight: PlatformInfos.isMobile ? 600 : 480,
|
|
|
|
|
),
|
|
|
|
|
builder: (_) => SubscriptionPaywall(
|
|
|
|
|
pangeaController: _pangeaController,
|
|
|
|
|
),
|
|
|
|
|
builder: (_) => const SizedBox.shrink(),
|
|
|
|
|
// SubscriptionPaywall(
|
|
|
|
|
// pangeaController: _pangeaController,
|
|
|
|
|
// ),
|
|
|
|
|
);
|
|
|
|
|
} catch (e, s) {
|
|
|
|
|
ErrorHandler.logError(e: e, s: s);
|
|
|
|
|
|