how to implement Alphabet scroll in flutterFlutter - The screen is not scrollingHow to limit scroll distance in a scroll view in Flutter?how to implement push notification in flutterHow to scroll page in flutterFlutter ListView scroll indicatorKeyboard not showing properly when text field is placed in sliverHorizontal ListView inside a Vertical ScrollView in FlutterFlutter widget size depend from anotheronTapDown and other callbacks from GestureDetector() are delayedBidirectional Scroll in flutter

How do we improve the relationship with a client software team that performs poorly and is becoming less collaborative?

Distance between two points on a map made for a game

What makes Graph invariants so useful/important?

Copenhagen passport control - US citizen

When blogging recipes, how can I support both readers who want the narrative/journey and ones who want the printer-friendly recipe?

Can Medicine checks be used, with decent rolls, to completely mitigate the risk of death from ongoing damage?

Could a US political party gain complete control over the government by removing checks & balances?

What does "enim et" mean?

How do I create uniquely male characters?

Need help identifying/translating a plaque in Tangier, Morocco

Magento2: Product backend page error

XeLaTeX and pdfLaTeX ignore hyphenation

I see my dog run

"The augmented fourth (A4) and the diminished fifth (d5) are the only augmented and diminished intervals that appear in diatonic scales"

Shell script can be run only with sh command

What is the meaning of "of trouble" in the following sentence?

Factorio analysis: data munging

Closed subgroups of abelian groups

Are white and non-white police officers equally likely to kill black suspects?

Why has Russell's definition of numbers using equivalence classes been finally abandoned? ( If it has actually been abandoned).

"which" command doesn't work / path of Safari?

What is the command to reset a PC without deleting any files

The use of multiple foreign keys on same column in SQL Server

Email Account under attack (really) - anything I can do?



how to implement Alphabet scroll in flutter


Flutter - The screen is not scrollingHow to limit scroll distance in a scroll view in Flutter?how to implement push notification in flutterHow to scroll page in flutterFlutter ListView scroll indicatorKeyboard not showing properly when text field is placed in sliverHorizontal ListView inside a Vertical ScrollView in FlutterFlutter widget size depend from anotheronTapDown and other callbacks from GestureDetector() are delayedBidirectional Scroll in flutter






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








6















Is there's any plugin or way to implement this kind of scrolling in flutter?



To be specifi, the letters column on the right on the right, such as highlighting the current alphabet letter, or if a letter is tapped, the scrollview goes directly to that letter header.



For sorting alphabetically, we can do that with List.sort(), for sticky header, we got some nice plugins as well.



contacts list iamge










share|improve this question



















  • 3





    You could use a ListView using an ordered List<YourModel>, then use FlatButtons on the right side of the screen. When pressed they scroll to the first index of said letter

    – Elcan
    Oct 15 '18 at 12:53







  • 1





    You might have to implement it in the same manner that was initially implemented in Android libraries that provide this behavior.

    – dazza5000
    Oct 15 '18 at 16:53











  • @FlorentUguet this works, for now, I was looking for some sort of scroll through the letters, I think I will get back to it later. thanks

    – Osama Gamal
    Oct 16 '18 at 9:52

















6















Is there's any plugin or way to implement this kind of scrolling in flutter?



To be specifi, the letters column on the right on the right, such as highlighting the current alphabet letter, or if a letter is tapped, the scrollview goes directly to that letter header.



For sorting alphabetically, we can do that with List.sort(), for sticky header, we got some nice plugins as well.



contacts list iamge










share|improve this question



















  • 3





    You could use a ListView using an ordered List<YourModel>, then use FlatButtons on the right side of the screen. When pressed they scroll to the first index of said letter

    – Elcan
    Oct 15 '18 at 12:53







  • 1





    You might have to implement it in the same manner that was initially implemented in Android libraries that provide this behavior.

    – dazza5000
    Oct 15 '18 at 16:53











  • @FlorentUguet this works, for now, I was looking for some sort of scroll through the letters, I think I will get back to it later. thanks

    – Osama Gamal
    Oct 16 '18 at 9:52













6












6








6


1






Is there's any plugin or way to implement this kind of scrolling in flutter?



To be specifi, the letters column on the right on the right, such as highlighting the current alphabet letter, or if a letter is tapped, the scrollview goes directly to that letter header.



For sorting alphabetically, we can do that with List.sort(), for sticky header, we got some nice plugins as well.



contacts list iamge










share|improve this question
















Is there's any plugin or way to implement this kind of scrolling in flutter?



To be specifi, the letters column on the right on the right, such as highlighting the current alphabet letter, or if a letter is tapped, the scrollview goes directly to that letter header.



For sorting alphabetically, we can do that with List.sort(), for sticky header, we got some nice plugins as well.



contacts list iamge







dart flutter






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 29 at 7:46









TruongSinh

1,582823




1,582823










asked Oct 15 '18 at 12:51









Osama GamalOsama Gamal

308217




308217







  • 3





    You could use a ListView using an ordered List<YourModel>, then use FlatButtons on the right side of the screen. When pressed they scroll to the first index of said letter

    – Elcan
    Oct 15 '18 at 12:53







  • 1





    You might have to implement it in the same manner that was initially implemented in Android libraries that provide this behavior.

    – dazza5000
    Oct 15 '18 at 16:53











  • @FlorentUguet this works, for now, I was looking for some sort of scroll through the letters, I think I will get back to it later. thanks

    – Osama Gamal
    Oct 16 '18 at 9:52












  • 3





    You could use a ListView using an ordered List<YourModel>, then use FlatButtons on the right side of the screen. When pressed they scroll to the first index of said letter

    – Elcan
    Oct 15 '18 at 12:53







  • 1





    You might have to implement it in the same manner that was initially implemented in Android libraries that provide this behavior.

    – dazza5000
    Oct 15 '18 at 16:53











  • @FlorentUguet this works, for now, I was looking for some sort of scroll through the letters, I think I will get back to it later. thanks

    – Osama Gamal
    Oct 16 '18 at 9:52







3




3





You could use a ListView using an ordered List<YourModel>, then use FlatButtons on the right side of the screen. When pressed they scroll to the first index of said letter

– Elcan
Oct 15 '18 at 12:53






You could use a ListView using an ordered List<YourModel>, then use FlatButtons on the right side of the screen. When pressed they scroll to the first index of said letter

– Elcan
Oct 15 '18 at 12:53





1




1





You might have to implement it in the same manner that was initially implemented in Android libraries that provide this behavior.

– dazza5000
Oct 15 '18 at 16:53





You might have to implement it in the same manner that was initially implemented in Android libraries that provide this behavior.

– dazza5000
Oct 15 '18 at 16:53













@FlorentUguet this works, for now, I was looking for some sort of scroll through the letters, I think I will get back to it later. thanks

– Osama Gamal
Oct 16 '18 at 9:52





@FlorentUguet this works, for now, I was looking for some sort of scroll through the letters, I think I will get back to it later. thanks

– Osama Gamal
Oct 16 '18 at 9:52












1 Answer
1






active

oldest

votes


















0














Checkout this plugin sticky head
https://pub.dartlang.org/packages/sticky_headers



class Example extends StatelessWidget 
@override
Widget build(BuildContext context)
return new ListView.builder(itemBuilder: (context, index)
return new StickyHeader(
header: new Container(
height: 50.0,
color: Colors.blueGrey[700],
padding: new EdgeInsets.symmetric(horizontal: 16.0),
alignment: Alignment.centerLeft,
child: new Text('Header #$index',
style: const TextStyle(color: Colors.white),
),
),
content: new Container(
child: new Image.network(imageForIndex(index), fit: BoxFit.cover,
width: double.infinity, height: 200.0),
),
);
);







share|improve this answer























    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f52817222%2fhow-to-implement-alphabet-scroll-in-flutter%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    Checkout this plugin sticky head
    https://pub.dartlang.org/packages/sticky_headers



    class Example extends StatelessWidget 
    @override
    Widget build(BuildContext context)
    return new ListView.builder(itemBuilder: (context, index)
    return new StickyHeader(
    header: new Container(
    height: 50.0,
    color: Colors.blueGrey[700],
    padding: new EdgeInsets.symmetric(horizontal: 16.0),
    alignment: Alignment.centerLeft,
    child: new Text('Header #$index',
    style: const TextStyle(color: Colors.white),
    ),
    ),
    content: new Container(
    child: new Image.network(imageForIndex(index), fit: BoxFit.cover,
    width: double.infinity, height: 200.0),
    ),
    );
    );







    share|improve this answer



























      0














      Checkout this plugin sticky head
      https://pub.dartlang.org/packages/sticky_headers



      class Example extends StatelessWidget 
      @override
      Widget build(BuildContext context)
      return new ListView.builder(itemBuilder: (context, index)
      return new StickyHeader(
      header: new Container(
      height: 50.0,
      color: Colors.blueGrey[700],
      padding: new EdgeInsets.symmetric(horizontal: 16.0),
      alignment: Alignment.centerLeft,
      child: new Text('Header #$index',
      style: const TextStyle(color: Colors.white),
      ),
      ),
      content: new Container(
      child: new Image.network(imageForIndex(index), fit: BoxFit.cover,
      width: double.infinity, height: 200.0),
      ),
      );
      );







      share|improve this answer

























        0












        0








        0







        Checkout this plugin sticky head
        https://pub.dartlang.org/packages/sticky_headers



        class Example extends StatelessWidget 
        @override
        Widget build(BuildContext context)
        return new ListView.builder(itemBuilder: (context, index)
        return new StickyHeader(
        header: new Container(
        height: 50.0,
        color: Colors.blueGrey[700],
        padding: new EdgeInsets.symmetric(horizontal: 16.0),
        alignment: Alignment.centerLeft,
        child: new Text('Header #$index',
        style: const TextStyle(color: Colors.white),
        ),
        ),
        content: new Container(
        child: new Image.network(imageForIndex(index), fit: BoxFit.cover,
        width: double.infinity, height: 200.0),
        ),
        );
        );







        share|improve this answer













        Checkout this plugin sticky head
        https://pub.dartlang.org/packages/sticky_headers



        class Example extends StatelessWidget 
        @override
        Widget build(BuildContext context)
        return new ListView.builder(itemBuilder: (context, index)
        return new StickyHeader(
        header: new Container(
        height: 50.0,
        color: Colors.blueGrey[700],
        padding: new EdgeInsets.symmetric(horizontal: 16.0),
        alignment: Alignment.centerLeft,
        child: new Text('Header #$index',
        style: const TextStyle(color: Colors.white),
        ),
        ),
        content: new Container(
        child: new Image.network(imageForIndex(index), fit: BoxFit.cover,
        width: double.infinity, height: 200.0),
        ),
        );
        );








        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Feb 13 at 17:18









        Harsha pulikolluHarsha pulikollu

        32229




        32229





























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f52817222%2fhow-to-implement-alphabet-scroll-in-flutter%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

            Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

            2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived