skip to Main Content

Html – How do I display a window with information when hovering over an image?"

My code: <!DOCTYPE html> <html lang="pt-br"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Imagem com informações</title> <style> .container { position: relative; display: inline-block; } .info-box { visibility: hidden; width: 200px; background-color: #f9f9f9; color: #333; text-align: center; border-radius: 5px; padding: 10px;…

VIEW QUESTION

Flutter – Improper use of Getx has been detected

I use Getx, and more specifically the Obx widget. Here's a code snippet where I use Obx: class CustumTextFormField extends StatelessWidget { const CustumTextFormField({ super.key, required this.textFieldLable, required this.isPassword, required this.custumController, }); final String textFieldLable; final bool isPassword; final CustumTextFormFieldController…

VIEW QUESTION
Back To Top
Search