Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 1.1 KB

README.md

File metadata and controls

39 lines (29 loc) · 1.1 KB

Getting started

2. Clone the repo

$ git clone https://github.com/ashut08/line_sign_in_demo.git
$ cd line_sign_in_demo/

3. Setup the line devloper console

I write a blog about this project where you can read setup guide for line devloper console Article Link

4. Add line sdk package in pubspec.yaml

flutter_line_sdk:<latest version>

5.Replace channelid with your channel id in main.dart file

void main() {
  WidgetsFlutterBinding.ensureInitialized();
  LineSDK.instance.setup("${your channel id}").then((_) {
    print("LineSDK Prepared");
  });
  runApp(MyApp());

}

Demo

feed example upload photo example