Questions tagged [card]
400 questions
10
votes
5 answers
How to add gradient color in card?
How to add gradient color in the background of a card ? Should I reproduce this card with a container and a box decoration or is there another simple way ?

Chloé
- 331
- 1
- 5
- 14
4
votes
1 answer
Nested Links & Buttons In A Card With Link NextJs
I 've searched a lot on S.O. but I could not find any answer that works 100%.
My problem is that I have a card component in a NextJs application that is wrapped around a
tag. I also have one more tag inside, 2 external links ( tags)…

Kr1ss
- 90
- 2
- 6
4
votes
1 answer
React Native: How to implement 2 columns of swipping cards?
I am trying to implement a scrollable list of cards in 2 columns. The cards should be swipe-able left or right out of the screen to be removed.
Basically, it should be like how the Chrome app is showing the list of tabs currently, which can be…

GAN
- 85
- 1
- 1
- 8
4
votes
2 answers
Can't change color of Card Title text in React Native Paper
I'm just getting started with React Native and using Paper for UI elements. I'm using a card layout for my current screen:
{cardData.map((card, index) => {
return(

RiddleRiddlerRddler
- 303
- 3
- 17
4
votes
3 answers
4
votes
3 answers
Remove space between Card
How to remove the column space between Card ?
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("Sample"),
),
body: Column(
children: [
Card(
…

John Joe
- 12,412
- 16
- 70
- 135
3
votes
2 answers
How to change elevation color in Compose?
Hi I am creating an app with Jetpack Compose I am and using Card composable with elevation. I need to change the elevation color, but I don't know how.

Besart
- 309
- 1
- 4
- 22
3
votes
0 answers
3
votes
1 answer
How to add a notch to a card component on Vue.js
I am currently developing my first major Vue Project, I am pretty much familiar already with the framework, but my biggest flaw is CSS, I was wondering if I could make this "notch" effect on a Card component (the card is already made, it's simply a…

PochiJr
- 33
- 2
3
votes
2 answers
Flutter Web - Unsupported operation: NaN error for canvas in Card widget
I am working on a flutter web project. We use the library fl_chart. We would like to use a PieChart in a Card widget but it throws the error Unsupported operation: NaN. It happens in debug and release mode (launched from the command lines flutter…

Valentin Vignal
- 6,151
- 2
- 33
- 73
3
votes
2 answers
show reactjs icons dynamically icon names picking from JSON file
I'm having following json file, which I keep Id,Intro, Icon name
[
{
"id" : 7,
"intro": "intro_7",
"icon" : "ArrowRight"
},
{
"id" : 8,
"intro": "intro_8",
"icon" : "Alarm"
…

Kelum
- 1,745
- 5
- 24
- 45
2
votes
0 answers
How to download files from google drive using gmail addon which is created using App script?
I'm using card services to make a Gmail addon. I am creating a pdf file of my current email and uploading it on Google Drive. I want to develop a download feature on button clicks. When the user clicks the Button, I want to download the email as a…

Poojan3037
- 310
- 1
- 9
2
votes
2 answers
My card content won't center correctly in bootstrap 5
I want to centre all of the content of my cards but it's all going to the right side
my card code:
…

John Johnson
- 89
- 7
2
votes
2 answers
Haskell instance function
I'm solving some exercises from a book and now I'm having some difficulties:
In this exercise I shall implement Card as an instance of the class Ord.
But I don't know how exactly I could implement it, so I would appreciate any help.
My code so far…
user20549332
2
votes
1 answer
Make a dynamic Listview inside a ListView =
as of the picture down below, I would like to make listview, where it is possible to add more lines(red) under each listview card.
I have implemented the overall listview(green), with the button that should add a list inside the list. Code is at the…