You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
906 B
Dart
32 lines
906 B
Dart
import 'package:car_provider_app/views/subscriptions/widget/subscriptions_card.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:mc_common_app/extensions/int_extensions.dart';
|
|
import 'package:mc_common_app/theme/colors.dart';
|
|
import 'package:mc_common_app/widgets/common_widgets/app_bar.dart';
|
|
|
|
class MySubscriptionsPage extends StatelessWidget {
|
|
const MySubscriptionsPage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: const CustomAppBar(
|
|
title: "My Subscriptions",
|
|
),
|
|
body: SizedBox(
|
|
width: double.infinity,
|
|
height: double.infinity,
|
|
child: Column(
|
|
children: [
|
|
21.height,
|
|
SubscriptionsCard(
|
|
isSubscribed: true,
|
|
backgroundColor: MyColors.darkIconColor,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|