Widget build()

in ui/lib/modules/catalog/widgets/deploy_dialog.dart [67:94]


  Widget build(BuildContext context) {
    return Scaffold(
      body: SingleChildScrollView(
        child: Container(
          margin: EdgeInsets.all(100),
          padding: EdgeInsets.all(25),
          color: Colors.white,
          child: Column(
            children: [
              Row(
                mainAxisAlignment: MainAxisAlignment.end,
                children: [
                  TextButton(
                    child: Text('Close'),
                    onPressed: () {
                      ref.read(projectProvider.notifier).state = emptyProject;
                      Navigator.of(context).pop();
                    },
                  ),
                ],
              ),
              _templateDetails(_template, context),
            ],
          ),
        ),
      ),
    );
  }