tooltip_ck 0.0.6
tooltip_ck: ^0.0.6 copied to clipboard
tooltip
example/lib/main.dart
import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:flutter/services.dart';
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
import 'package:tooltip_ck/tooltip.dart';
import 'package:tooltip_ck/tooltip_ck.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
String _platformVersion = 'Unknown';
final _tooltipCkPlugin = TooltipCk();
@override
void initState() {
super.initState();
initPlatformState();
}
// Platform messages are asynchronous, so we initialize in an async method.
Future<void> initPlatformState() async {
String platformVersion;
// Platform messages may fail, so we use a try/catch PlatformException.
// We also handle the message potentially returning null.
try {
platformVersion =
await _tooltipCkPlugin.getPlatformVersion() ?? 'Unknown platform version';
} on PlatformException {
platformVersion = 'Failed to get platform version.';
}
// If the widget was removed from the tree while the asynchronous platform
// message was in flight, we want to discard the reply rather than calling
// setState to update our non-existent appearance.
if (!mounted) return;
setState(() {
_platformVersion = platformVersion;
});
}
@override
Widget build(BuildContext context) {
return MaterialApp(
builder: FlutterSmartDialog.init(),
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Center(
child: GestureDetector(
child: CKTooltipV3(
child: Text("Top1111"),
position: CKToolTipPositionV3.topCenter,
tooltipText: 'weeeee',
richContent: TextSpan(
text: "11111",
style: TextStyle(fontSize: 14, color:
Colors.orange),
children: [
TextSpan(
text: '\n2222 2222',
style: TextStyle(fontSize: 14, color:
Colors.red),
recognizer: TapGestureRecognizer()
..onTap = () {
print('2222点击');
},
),
TextSpan(
text: '\n2222 ',
style: TextStyle(fontSize: 14, color:
Colors.green),
recognizer: TapGestureRecognizer()
..onTap = () {
print('2222点击');
},
),
],
),
autoHiddenDuration: Duration(seconds: 3),
clickMaskDismiss: false,
usePenetrate: true,
showClose: true,
needClick: true,
onChildClick: () {},
onDismiss: () {
print("onDismiss");
},
),
),
),
),
);
}
}