playing_cards 0.1.5+6 playing_cards: ^0.1.5+6 copied to clipboard
A rendering library for standard 52 card decks in your Flutter app. Use this package if you want to render good looking playing cards without too much fuss.
import 'package:flutter/material.dart';
import 'package:playing_cards/playing_cards.dart';
void main() {
runApp(MaterialApp(home: CardHomeView()));
}
class CardHomeView extends StatefulWidget {
CardHomeView({Key key}) : super(key: key);
@override
_CardHomeViewState createState() => _CardHomeViewState();
}
class _CardHomeViewState extends State<CardHomeView> {
Suit suit = Suit.spades;
CardValue value = CardValue.ace;
// This style object overrides the styles for the suits, replacing the
// image-based default implementation for the suit emblems with a text based
// implementation.
PlayingCardViewStyle myCardStyles = PlayingCardViewStyle(suitStyles: {
Suit.spades: SuitStyle(
builder: (context) => FittedBox(
fit: BoxFit.fitHeight,
child: Text(
"♠",
style: TextStyle(fontSize: 500),
),
),
style: TextStyle(color: Colors.grey[800])),
Suit.hearts: SuitStyle(
builder: (context) => FittedBox(
fit: BoxFit.fitHeight,
child: Text(
"♥",
style: TextStyle(fontSize: 500),
),
),
style: TextStyle(color: Colors.red)),
Suit.diamonds: SuitStyle(
builder: (context) => FittedBox(
fit: BoxFit.fitHeight,
child: Text(
"♦",
style: TextStyle(fontSize: 500),
),
),
style: TextStyle(color: Colors.red)),
Suit.clubs: SuitStyle(
builder: (context) => FittedBox(
fit: BoxFit.fitHeight,
child: Text(
"♣",
style: TextStyle(fontSize: 500),
),
),
style: TextStyle(color: Colors.grey[800])),
});
@override
Widget build(BuildContext context) {
return Scaffold(
body: Column(
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: [
PlayingCardView(card: PlayingCard(suit, value), style: myCardStyles),
Row(mainAxisAlignment: MainAxisAlignment.spaceAround, children: [
DropdownButton<Suit>(
value: suit,
items: Suit.values
.map((s) =>
DropdownMenuItem(value: s, child: Text(s.toString())))
.toList(),
onChanged: (val) {
setState(() {
suit = val;
});
}),
DropdownButton<CardValue>(
value: value,
items: CardValue.values
.map((s) =>
DropdownMenuItem(value: s, child: Text(s.toString())))
.toList(),
onChanged: (val) {
setState(() {
value = val;
});
}),
])
],
),
);
}
}