Git Product home page Git Product logo

Comments (3)

mgierlasinski avatar mgierlasinski commented on July 23, 2024 1

Hi @gviddy
Clipping always works from the center of GradientView by design, there is no layout or alignment options at the moment. For proper positioning you need to put GradientView inside one of Xamarin.Forms layout containers, something like:

         <Grid HeightRequest="32" WidthRequest="400" BackgroundColor="Red">
                <magic:GradientView HorizontalOptions="Start" WidthRequest="60">
                    <magic:GradientView.Mask>
                        <magic:TextMask Text="Hello" FontSize="22"/>
                    </magic:GradientView.Mask>
                    <magic:LinearGradient Angle="-90">
                        <magic:GradientStop Color="#A9CDFF" Offset="0" />
                        <magic:GradientStop Color="#72F6D1" Offset="0.25"/>
                        <magic:GradientStop Color="#A0ED8D" Offset="0.5"/>
                        <magic:GradientStop Color="#FED365" Offset="0.75"/>
                        <magic:GradientStop Color="#FAA49E" Offset="1.0"/>
                    </magic:LinearGradient>
                </magic:GradientView>
            </Grid>

Unfortunately because you have binding here and WalletTypeStr can be anything, you have to measure text and set correct width instead of WidthRequest="60".

You can also extend TextMask and do your custom drawing. TextMask is really a PathMask with some text related properties. There is a method LayoutBounds in GradientMask base class which does the positioning and stretching:
LayoutBounds

I will improve positioning in next update by adding TextAlignment for text mask.

from magicgradients.

mgierlasinski avatar mgierlasinski commented on July 23, 2024 1

Hi @gviddy
New version has just been released. Two properties were added to TextMask: HorizontalTextAlignment and VerticalTextAlignment.

from magicgradients.

gviddy avatar gviddy commented on July 23, 2024

Hi @gviddy
New version has just been released. Two properties were added to TextMask: HorizontalTextAlignment and VerticalTextAlignment.

Oh that's awesome. Thank you. I will give it a go.

from magicgradients.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.