2024-07-17 18:59:09 +00:00
|
|
|
import 'package:flutter/material.dart';
|
2024-07-17 20:08:04 +00:00
|
|
|
import 'package:readability/article.dart';
|
2024-07-17 18:59:09 +00:00
|
|
|
import 'dart:async';
|
|
|
|
|
|
|
|
import 'package:readability/readability.dart' as readability;
|
|
|
|
|
|
|
|
void main() {
|
|
|
|
runApp(const MyApp());
|
|
|
|
}
|
|
|
|
|
|
|
|
class MyApp extends StatefulWidget {
|
|
|
|
const MyApp({super.key});
|
|
|
|
|
|
|
|
@override
|
|
|
|
State<MyApp> createState() => _MyAppState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _MyAppState extends State<MyApp> {
|
2024-07-17 20:08:04 +00:00
|
|
|
late Future<readability.ArticleResponse> readabilityResult;
|
2024-07-17 18:59:09 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
super.initState();
|
2024-07-17 20:08:04 +00:00
|
|
|
readabilityResult = readability.parseAsync('https://www.bbc.com/sport/football/articles/cl7y4z82z2do');
|
2024-07-17 18:59:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
const textStyle = TextStyle(fontSize: 25);
|
|
|
|
const spacerSmall = SizedBox(height: 10);
|
|
|
|
return MaterialApp(
|
|
|
|
home: Scaffold(
|
|
|
|
appBar: AppBar(
|
|
|
|
title: const Text('Native Packages'),
|
|
|
|
),
|
|
|
|
body: SingleChildScrollView(
|
|
|
|
child: Container(
|
|
|
|
padding: const EdgeInsets.all(10),
|
|
|
|
child: Column(
|
|
|
|
children: [
|
|
|
|
const Text(
|
|
|
|
'This calls a native function through FFI that is shipped as source in the package. '
|
|
|
|
'The native code is built as part of the Flutter Runner build.',
|
|
|
|
style: textStyle,
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
),
|
|
|
|
spacerSmall,
|
2024-07-17 20:08:04 +00:00
|
|
|
FutureBuilder<readability.ArticleResponse>(
|
|
|
|
future: readabilityResult,
|
|
|
|
builder: (BuildContext context, AsyncSnapshot<readability.ArticleResponse> value) {
|
2024-07-17 18:59:09 +00:00
|
|
|
final displayValue =
|
2024-07-17 20:08:04 +00:00
|
|
|
(value.hasData) ? value.data?.article.content : 'loading';
|
2024-07-17 18:59:09 +00:00
|
|
|
return Text(
|
|
|
|
'await sumAsync(3, 4) = $displayValue',
|
|
|
|
style: textStyle,
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
);
|
|
|
|
},
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|