dart_naver_web_tools 0.1.0
dart_naver_web_tools: ^0.1.0 copied to clipboard
Dart helpers for the official NAVER Share, Open Main, and NAVER app URL scheme integrations.
example/dart_naver_web_tools_example.dart
import 'package:dart_naver_web_tools/dart_naver_web_tools.dart';
void main() {
print(
NaverShare.uri(Uri.parse('https://example.com/article'), title: 'Article'),
);
print(NaverOpenMain.markup(title: '뉴스'));
}