如何将文本放入颤动的颤动中?

问题描述 投票:0回答:1

我一直在尝试将文本放在swiper窗口小部件中,但是我不能,我一直在搜索,但是发现的只是图像。这是我的代码

Container(
    padding: EdgeInsets.only(top: 10.0 ),
    color : Colors.black12,
    child: Swiper(
      itemWidth: _screenSize.width *0.7,
      itemHeight: _screenSize.height * 0.5,          
      layout: SwiperLayout.STACK,
      itemBuilder: (BuildContext context, int  index) {
        return ClipRRect(
          borderRadius: BorderRadius.circular(20.0),
          child: Image.network("https://colourlex.com/wp-content/uploads/2017/04/Spinel-black-painted-swatch-47400-opt.jpg",fit: BoxFit.fill),

        );
      },
      itemCount: 3,                    
    ),
  );

(Image)this is what I would like to do

谢谢

android ios flutter dart swiper
1个回答
0
投票

您可以在下面复制粘贴运行完整代码您可以使用Stack将文字放在图片上

代码段

itemBuilder: (BuildContext context, int index) {
      return Stack(
        children: <Widget>[
          Center(
            child: Image.network(
              "https://colourlex.com/wp-content/uploads/2017/04/Spinel-black-painted-swatch-47400-opt.jpg",
              fit: BoxFit.fill,
            ),
          ),
          Center(
            child: Container(
              //width: 90,
              //height: 90,
              //color: Colors.white,
              child: Text("Your Text here No ${index}",
                  style: TextStyle(
                    color: Colors.white,
                  )),
            ),

工作演示

enter image description here

完整代码

import 'package:flutter/material.dart';

import 'package:flutter_swiper/flutter_swiper.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}) : super(key: key);

  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Swiper(
        layout: SwiperLayout.STACK,
        itemWidth: 300.0,
        itemBuilder: (BuildContext context, int index) {
          return Stack(
            children: <Widget>[
              Center(
                child: Image.network(
                  "https://colourlex.com/wp-content/uploads/2017/04/Spinel-black-painted-swatch-47400-opt.jpg",
                  fit: BoxFit.fill,
                ),
              ),
              Center(
                child: Container(
                  //width: 90,
                  //height: 90,
                  //color: Colors.white,
                  child: Text("Your Text here No ${index}",
                      style: TextStyle(
                        color: Colors.white,
                      )),
                ),
              )
            ],
          );
        },
        itemCount: 3,
        pagination: SwiperPagination(),
        control: SwiperControl(),
      ),
    );
  }
}
© www.soinside.com 2019 - 2024. All rights reserved.