Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More Price Cards #200

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions lib/screens/main_app_widgets/fav_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ class _FavPageState extends State<FavPage> {
builder: (context, favProviderModel, child) => AlertDialog(
title: const Text('Remove'),
content: const SingleChildScrollView(
child: ListBody(
children: <Widget>[
Text(
'Do you want to remove this widget from the favorites list?'),
],
),
//child: ListBody(
// children: <Widget>[
//Text(
//'Do you want to remove this widget from the favorites list?'),
//],
// ),
),
actions: <Widget>[
TextButton(
Expand Down
2 changes: 1 addition & 1 deletion lib/ui_components/cards/All Cards/blog_card/card_1.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class FirstCard extends StatelessWidget {
),
Container(
padding: const EdgeInsets.only(left: 10, right: 10, bottom: 20),
child: const Column(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
Expand Down
12 changes: 12 additions & 0 deletions lib/ui_components/cards/All Cards/blog_card/card_2.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,21 @@ class SecondCard extends StatelessWidget {
return Card(
child: Row(
children: [

Container(
padding: const EdgeInsets.only(left: 5, top: 2, bottom: 2),
height: (MediaQuery.of(context).size.width / 2.4) * 0.83,
width: MediaQuery.of(context).size.width -
MediaQuery.of(context).size.width / 2.4 -
8,
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.spaceBetween,

Padding(
padding: const EdgeInsets.all(8.0),
child: Row(

children: [
Container(
padding: const EdgeInsets.only(left: 5, top: 2, bottom: 2),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,13 @@ class FifthCard extends StatelessWidget {
height: 10,
),
Container(

padding: const EdgeInsets.symmetric(horizontal: 10, vertical: 10),
child: Column(

padding: const EdgeInsets.all(15),
child: const Column(

crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class SixthCard extends StatelessWidget {
width: MediaQuery.of(context).size.width -
MediaQuery.of(context).size.width / 2.4 -
8,
child: const Column(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Expand Down
4 changes: 2 additions & 2 deletions lib/ui_components/cards/All Cards/social_card/card_3.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class ThirdCard extends StatelessWidget {
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const Row(
Row(
children: [
Icon(
Icons.star_outline,
Expand Down Expand Up @@ -62,7 +62,7 @@ class ThirdCard extends StatelessWidget {
const SizedBox(
height: 10,
),
const Row(
Row(
children: [
CircleAvatar(),
SizedBox(
Expand Down
16 changes: 12 additions & 4 deletions lib/ui_components/cards/All Cards/social_card/card_4.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class FourthCard extends StatelessWidget {
const EdgeInsets.only(left: 5, top: 10, bottom: 10, right: 5),
child: Column(
children: [
const Row(
Row(
children: [
CircleAvatar(),
SizedBox(
Expand Down Expand Up @@ -83,6 +83,7 @@ class FourthCard extends StatelessWidget {
],
),
const SizedBox(height: 10),
Row(
const Row(
children: [
Text(
Expand All @@ -101,6 +102,10 @@ class FourthCard extends StatelessWidget {
)
],
),
const SizedBox(
height: 3,
),
Row(

const Row(
children: [
Expand All @@ -113,6 +118,7 @@ class FourthCard extends StatelessWidget {
const SizedBox(
height: 15,
),
Row(
const Row(
children: [
Text(
Expand All @@ -132,7 +138,7 @@ class FourthCard extends StatelessWidget {
)
],
),
const Row(
Row(
children: [
Icon(
Icons.color_lens,
Expand All @@ -150,7 +156,7 @@ class FourthCard extends StatelessWidget {
),
],
),
const Row(
Row(
children: [
Icon(
Icons.baby_changing_station,
Expand All @@ -169,7 +175,7 @@ class FourthCard extends StatelessWidget {
),
],
),
const Row(
Row(
children: [
Icon(
Icons.circle,
Expand All @@ -190,6 +196,8 @@ class FourthCard extends StatelessWidget {
const SizedBox(
height: 20,
),
Row(
children: [
const Row(
children: [
SizedBox(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,40 @@ class SeventhCard extends StatelessWidget {
children: [
const Row(
children: [
Row(
children: [
Icon(
Icons.star,
color: Colors.amber,
size: 30,
),
Icon(
Icons.star,
color: Colors.amber,
size: 30,
),
Icon(
Icons.star,
color: Colors.amber,
size: 30,
),
Icon(
Icons.star,
color: Colors.amber,
size: 30,
),
Icon(
Icons.star,
color: Colors.amber,
size: 30,
)
],

Icon(
Icons.star,
color: Colors.amber,
size: 25,

),
Icon(
Icons.star,
Expand Down Expand Up @@ -65,6 +95,9 @@ class SeventhCard extends StatelessWidget {
SizedBox(
width: 7,
),

Row(

Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Expand Down
Loading