Jisho-Study-Tool/lib/components/search/search_results_body/parts/sense/antonyms.dart

47 lines
1.2 KiB
Dart
Raw Normal View History

import 'package:flutter/material.dart';
2022-01-23 03:46:03 +01:00
import 'package:jisho_study_tool/routing/routes.dart';
import '../../../../../models/themes/theme.dart';
import 'search_chip.dart';
class Antonyms extends StatelessWidget {
final List<String> antonyms;
const Antonyms({
Key? key,
required this.antonyms,
}) : super(key: key);
@override
Widget build(BuildContext context) {
return Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
const Text(
'Antonyms:',
style: TextStyle(fontWeight: FontWeight.bold),
),
const SizedBox(height: 5),
Wrap(
spacing: 5,
runSpacing: 5,
children: antonyms
.map(
2022-01-23 03:46:03 +01:00
(a) => InkWell(
onTap: () => Navigator.pushNamed(context, Routes.search, arguments: a),
child: SearchChip(
text: a,
colors: const ColorSet(
foreground: Colors.white,
background: Colors.blue,
),
),
),
)
.toList(),
)
],
);
}
}