Untitled

 avatar
faisalsalameh
dart
2 years ago
1.6 kB
6
Indexable
 Container(
                height: 89,
                width: screenWidth,
                padding: const EdgeInsets.only(
                  top: 16,
                  left: 24,
                  right: 24,
                  bottom: 4,
                ),
                margin: const EdgeInsets.only(bottom: 20),
                decoration: BoxDecoration(
                  border: Border.all(
                    color: AppColors.magenta,
                    width: 2,
                  ),
                  borderRadius: BorderRadius.circular(16),
                ),
                child: Column(
                  crossAxisAlignment: CrossAxisAlignment.start,
                  children: <Widget>[
                    Headline6(
                      textProps: TextProps(
                        title: translate.state.fullName,
                        style: TextThemeStyle()
                            .headline6
                            .copyWith(color: AppColors.opacityLine),
                      ),
                    ),
                    TextFormField(
                      style: TextThemeStyle().headline5,
                      textInputAction: TextInputAction.next,
                      keyboardType: TextInputType.name,
                      controller: fullNameTF.controller,
                      decoration: InputDecoration(
                        hintText: fullName,
                        hintStyle: TextThemeStyle().headline5,
                        border: InputBorder.none,
                      ),
                    )
                  ],
                ),
              ),
             
Editor is loading...