Tooltip Widget in Flutter
import "package:flutter/material.dart";
import "package:sdreatech_learning_widget/All_widgets_Ui/customWidget.dart";
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: "Tooltip",
debugShowCheckedModeBanner: false,
theme: ThemeData(
appBarTheme: const AppBarTheme(
backgroundColor: Colors.grey,
centerTitle: true,
),
),
home: const TooltipPractice(),
);
}
}
class TooltipPractice extends StatelessWidget {
const TooltipPractice({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: UiHelper.customAppBar("Tooltip"),
body: const Center(
child: Tooltip(
message: "This is a Tooltip",
child: Text(
"Click Me",
style: TextStyle(fontWeight: FontWeight.bold, fontSize: 30.0),
),
),
),
);
}
}

Comments
Post a Comment