~repos /only-bible-app
GIT_CONFIG_PARAMETERS="'http.version=HTTP/1.1'" git clone
https://git.pyrossh.dev/only-bible-app.git
Discussions:
https://groups.google.com/g/rust-embed-devs
The only bible app you will ever need. No ads. No in-app purchases. No distractions.
lib/widgets/highlight_button.dart
import "package:flutter/material.dart";
class HighlightButton extends StatelessWidget { final int index; final Color color; final Function(int) onHighlightSelected;
const HighlightButton({super.key, required this.index, required this.color, required this.onHighlightSelected});
@override Widget build(BuildContext context) { return InkWell( enableFeedback: true, onTap: () => onHighlightSelected(index), child: Container( padding: const EdgeInsets.symmetric(horizontal: 10), decoration: BoxDecoration( color: color.withAlpha(230), shape: BoxShape.circle, border: Border.all(color: Theme.of(context).colorScheme.onSurface, width: 1), ), child: const SizedBox(width: 24, height: 24), ), ); }}