egycoder_scraping 0.0.1 copy "egycoder_scraping: ^0.0.1" to clipboard
egycoder_scraping: ^0.0.1 copied to clipboard

discontinued
outdated

a part of egycoder frame work, this package useful to anyone interesting with scraping websites

example/lib/main.dart

import 'package:example/src/screen/home/home.dart';
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
        title: 'Flutter Demo',
        theme: ThemeData(
          primarySwatch: Colors.blue,
        ),
        home: ChangeNotifierProvider(
          create: (_) => HomeProvider(),
          child: const HomeScreen(),
        ));
  }
}
0
likes
0
points
11
downloads

Publisher

unverified uploader

Weekly Downloads

a part of egycoder frame work, this package useful to anyone interesting with scraping websites

Homepage

License

unknown (license)

Dependencies

dio, flutter, html

More

Packages that depend on egycoder_scraping