Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

[web][Html]: TextOverflow.ellipsis is not rendered if Row contains an image followed by Text. Vice-versa is rendered correctly. #83957

Closed
Labels
P2Important issues not at the top of the work liste: web_htmlHTML rendering backend for Webengineflutter/engine related. See also e: labels.f: material designflutter/packages/flutter/material repository.found in release: 2.2Found to occur in 2.2frameworkflutter/packages/flutter repository. See also f: labels.has reproducible stepsThe issue has been confirmed reproducible and is ready to work onplatform-webWeb applications specificallyr: solvedIssue is closed as solvedteam-webOwned by Web platform teamtriaged-webTriaged by Web platform team
@miki-long

Description

@miki-long

the problem code:

import 'package:flutter/material.dart';void main() => runApp(MyApp());class MyApp extends StatelessWidget {  @override  Widget build(BuildContext context) {    return MaterialApp(      title: 'Material App',      theme: ThemeData.dark(),      home: Home(),    );  }}class Home extends StatelessWidget {  @override  Widget build(BuildContext context) {    return Scaffold(      appBar: AppBar(        title: Text('Material App Bar'),      ),      body: Row(children: [        Container(          width: 50,          height: 50,          child: Image.asset('images/ic_avatar_default.png', fit: BoxFit.cover, width: 50, height: 50, cacheHeight: 50, cacheWidth: 50,),        ),        Container(          constraints: BoxConstraints(maxWidth: 52),          child: Text(            'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.',            overflow: TextOverflow.ellipsis,          ),        ),      ]),    );  }}

Command line input and render width window.flutterWebRenderer = "html";

flutter run -d edge --web-hostname 127.0.0.1 --web-port 5678 --web-renderer html --profile

What I expect is

image

But, actually is

image

flutter environment is

image

Metadata

Metadata

Assignees

No one assigned

    Labels

    P2Important issues not at the top of the work liste: web_htmlHTML rendering backend for Webengineflutter/engine related. See also e: labels.f: material designflutter/packages/flutter/material repository.found in release: 2.2Found to occur in 2.2frameworkflutter/packages/flutter repository. See also f: labels.has reproducible stepsThe issue has been confirmed reproducible and is ready to work onplatform-webWeb applications specificallyr: solvedIssue is closed as solvedteam-webOwned by Web platform teamtriaged-webTriaged by Web platform team

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions


      [8]ページ先頭

      ©2009-2025 Movatter.jp