import 'package:flutter/material.dart';
import 'package:comic_reader_view/comic_reader_view.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text('Comic Reader'),
),
body: Center(
child: ComicReaderView(
images: [
"https://example.com/image1.jpg",
"https://example.com/image2.jpg",
"https://example.com/image3.jpg",
// Add more image URLs as needed
],
),
),
),
);
}
}