tabbed_card 0.0.1
tabbed_card: ^0.0.1 copied to clipboard
It is a custom card with Tabs for keeps multiple contents.
import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart';
import 'package:tabbed_card/tabbed_card.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Tabbed Card Example',
scrollBehavior: ScrollConfiguration.of(context)
.copyWith(scrollbars: false, dragDevices: {
PointerDeviceKind.touch,
PointerDeviceKind.mouse,
}),
home: const MyHomePage(title: 'Tabbed Card'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Container(
padding: const EdgeInsets.all(25),
child: TabbedCard(
tabs: [
TabbedCardItem(
label: "First Tab",
child: const Placeholder(
color: Colors.blue,
),
),
TabbedCardItem(
label: 'Second Tab',
child: const Placeholder(
color: Colors.red,
),
),
TabbedCardItem(
label: "With a background color",
options: TabbedCardItensOptions(
tabColor: Colors.amber,
),
child: const Placeholder(),
),
TabbedCardItem(
label: 'With an icon',
icon: const Icon(Icons.dashboard),
child: const Placeholder(
color: Colors.red,
),
),
TabbedCardItem(
label: 'With an icon and custom LabelStyle',
icon: const Icon(
Icons.dashboard,
color: Colors.white,
),
options: TabbedCardItensOptions(
tabColor: Colors.black,
labelStyle: const TextStyle(color: Colors.white)),
child: const Placeholder(
color: Colors.purple,
),
),
TabbedCardItem(
label: 'Another with an icon and custom LabelStyle',
icon: const Icon(
Icons.dashboard,
color: Colors.white,
),
options: TabbedCardItensOptions(
tabColor: Colors.red,
labelStyle: const TextStyle(color: Colors.white)),
child: const Placeholder(
color: Colors.purple,
),
),
],
),
),
);
}
}