Compare commits
No commits in common. "c0100478876cf9c780f3478f9c5dd63f41ea8da8" and "26dd27a435a0752b4fcd363a453adc88bfde80ab" have entirely different histories.
c010047887
...
26dd27a435
2 changed files with 18 additions and 32 deletions
|
@ -129,7 +129,7 @@ class _GopherLoaderState extends State<GopherLoader> {
|
|||
builder: (cont, snap) {
|
||||
print("${snap.connectionState}");
|
||||
if (snap.connectionState != ConnectionState.done) {
|
||||
return const Center(child: CircularProgressIndicator());
|
||||
return const CircularProgressIndicator();
|
||||
} else {
|
||||
if (snap.hasData) {
|
||||
print(
|
||||
|
|
|
@ -12,32 +12,21 @@ import 'package:gophershy/gopherlib.dart';
|
|||
class GopherText extends StatelessWidget {
|
||||
|
||||
final LoadedGopherItem item;
|
||||
final ScrollController controller = ScrollController();
|
||||
|
||||
GopherText(this.item, {super.key});
|
||||
const GopherText(this.item, {super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
// TODO: Figure out how to stop line wrap
|
||||
// TODO: figure out how to switch between line wrap and no wrap
|
||||
return SizedBox(
|
||||
width: 4000,
|
||||
child: SingleChildScrollView(
|
||||
controller: controller,
|
||||
scrollDirection: Axis.horizontal,
|
||||
// Really shitty hack that works half way
|
||||
// but leaves shitton of space on the right
|
||||
child: SizedBox(
|
||||
width: 4000,
|
||||
child: ListView.builder(
|
||||
shrinkWrap: true,
|
||||
return ListView.builder(
|
||||
itemCount: item.data?.length,
|
||||
itemBuilder: (context, int n) {
|
||||
return SelectableText(
|
||||
return Text(
|
||||
utf8.decode(item.data![n], allowMalformed: true),
|
||||
style: const TextStyle(
|
||||
fontFamily: "SourceCodePro",
|
||||
fontWeight: FontWeight.w600,
|
||||
fontWeight: FontWeight.w400,
|
||||
height: 1.0,
|
||||
// Might need to be tuned for ASCII art
|
||||
letterSpacing: 1,
|
||||
|
@ -46,9 +35,6 @@ class GopherText extends StatelessWidget {
|
|||
),
|
||||
);
|
||||
},
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue