[AVLE] Applied Blockquote/code highlightsteemCreated with Sketch.

in SCT.암호화폐.Crypto2 years ago (edited)

this is blockquote

Highlight.

this is code
 child: Column(
          children: [
            _buildHeader(),
            TextFormField(
              controller: _titleController,
              onChanged: (value) {
                context.read<PostingBloc>().add(PostingTitleChanged(value));
              },
              decoration: InputDecoration(
                labelText: 'Posting_title_hint'.tr,
                filled: true,
                fillColor: Colors.white,
              ),
            ),
            const SizedBox(height: 10),
            Editor(
              editorType: EditorType.story,
              controller: _bodyController,
              enabled: true,
              username: context.read<AuthBloc>().state.username,
              hintText: 'Posting_content_hint'.tr,
              onBodyChanged: (String value) {
                printError('Posting screen. body changed. $value');
                print(
                    'Posting screen. body changed text controller. ${_bodyController.text}');
                context.read<PostingBloc>().add(PostingBodyChanged(value));
              },
              onClear: () {
                // _titleController.text = '';
                // _bodyController.text = '';
                // clear title too
                _titleController.clear();
                // context.read<PostingBloc>().add(const PostingTitleChanged(''));
                context.read<PostingBloc>().add(PostingStoryDraftCleared());



Posted through the AVLE Dapp (https://avle.io)

Coin Marketplace

STEEM 0.29
TRX 0.12
JST 0.034
BTC 63687.39
ETH 3309.68
USDT 1.00
SBD 3.93