真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Flutter質(zhì)感設(shè)計(jì)之模態(tài)底部面板-創(chuàng)新互聯(lián)

模態(tài)底部面板是菜單或?qū)υ捒虻奶娲桨?,可防止用戶與其他控件進(jìn)行互動(dòng),可以使用showModalBottomSheet函數(shù)創(chuàng)建和顯示模態(tài)底部面板。

成都創(chuàng)新互聯(lián)專注于拱墅企業(yè)網(wǎng)站建設(shè),成都響應(yīng)式網(wǎng)站建設(shè)公司,商城網(wǎng)站建設(shè)。拱墅網(wǎng)站建設(shè)公司,為拱墅等地區(qū)提供建站服務(wù)。全流程定制網(wǎng)站開發(fā),專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,成都創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務(wù)
import 'package:flutter/material.dart';

class MyApp extends StatelessWidget {

 @override
 Widget build(BuildContext context) {
  return new Scaffold(
   appBar: new AppBar(
    title: new Text('底部面板')
   ),
   body: new Center(
    child: new RaisedButton(
     child: new Text('顯示底部面板'),
     onPressed: () {
      // showModalBottomSheet:顯示模態(tài)質(zhì)感設(shè)計(jì)底部面板
      showModalBottomSheet(context:context, builder:(BuildContext context) {
       return new Container(
        child: new Padding(
         padding: const EdgeInsets.all(32.0),
         child: new Text(
          '這是模態(tài)底部面板,點(diǎn)擊任意位置即可關(guān)閉',
          textAlign: TextAlign.center,
          style: new TextStyle(
           color: Theme.of(context).accentColor,
           fontSize: 24.0
          )
         )
        )
       );
      });
     }
    )
   )
  );
 }
}

void main() {
 runApp(new MaterialApp(
  title: 'Flutter Demo',
  home: new MyApp()
 ));
}

當(dāng)前文章:Flutter質(zhì)感設(shè)計(jì)之模態(tài)底部面板-創(chuàng)新互聯(lián)
網(wǎng)站鏈接:http://weahome.cn/article/jeiis.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部