Saltar al contenido

ejemplo de código de morfismo de vidrio flutter

Esta es la respuesta más válida que te podemos brindar, pero primero mírala detenidamente y analiza si es compatible a tu proyecto.

Ejemplo: aleteo de morfismo de vidrio

Center(
 child:Padding(
  padding: EdgeInsets.symmetric(horizontal:20),// clipract will make sure your blur remains in the container
   child:ClipRect(
    child:BackdropFilter(
     filter: ImageFilter.blur(// set the bure amount you want for x and y
       sigmaX:3,
       sigmaY:3,),Container(
         padding: EdgeInsets.symmetric(horizontal:10),// set the correct width and height for the container
          width:300,
          height:350,
            decoration:BoxDecoration(// set the color and the opacity
             color: Colors.white.withOpacity(0.3),// add a rounded border
              borderRadius: BorderRadius.circular(10),// add an edge to the border
              border: Border.all(
              width:1.2, 
              color: Colors.white.withOpacity(0.3),),),// call the child for the container
                 child:Text('normally a column'),),

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *