dg_direct_link 1.0.17 dg_direct_link: ^1.0.17 copied to clipboard
Min Thant Htet.
import 'package:dg_direct_link/dg_direct_link.dart';
import 'package:dg_direct_link/widgets/dg_direct_link_widget.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const MyHomePage(title: 'DG direct link Demo'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
// This widget is the home page of your application. It is stateful, meaning
// that it has a State object (defined below) that contains fields that affect
// how it looks.
// This class is the configuration for the state. It holds the values (in this
// case the title) provided by the parent (in this case the App widget) and
// used by the build method of the State. Fields in a Widget subclass are
// always marked "final".
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
TextEditingController controller = TextEditingController();
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
title: Text(widget.title),
),
body: Container(
alignment: Alignment.center,
padding: EdgeInsets.all(20),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
TextField(controller: controller),
SizedBox(height: 20),
ElevatedButton(onPressed: (){
DGDirectLink().refresh();
}, child: Text('Click to Start')),
SizedBox(height: 20),
DGDirectLinkWidget(
url: controller.text,
loading: (){
return Text('Loading');
}, error: (){
return Text('Error');
}, complete: (links){
return Text(links[0].link);
} ),
],
),
),
);
}
}